<form role="search"> <!-- role 속성을 사용했습니다. -->
    <label for="search-input">Search:</label>
    <input type="text" id="search-input" name="search" placeholder="Search...">
    <button type="submit">Submit</button>
</form>
<section role="region">
    <h2>구획 요소 section</h2>
    <p>
        HTML section 요소는 HTML 문서의 독립적인 구획을 나타낼 때 사용합니다. 
    </p>
</section>
<button type="button" onclick="alert('버튼이 클릭되었습니다.')">클릭하세요</button>
<div role="button" tabindex="0" onclick="alert('버튼이 클릭되었습니다.')">클릭하세요</div>