<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>