<form role="search"> <!-- Using the role attribute -->
    <label for="search-input">Search:</label>
    <input type="search" id="search-input" name="search" placeholder="Search...">
    <button type="submit">Submit</button>
</form>
<section role="region">
    <h2>Section Element as a Landmark</h2>
    <p>
        The HTML section element is used to define a standalone section within an HTML document.
    </p>
</section>
<button type="button" onclick="alert('Button clicked!')">Click me</button>
<div role="button" tabindex="0" onclick="alert('Button clicked!')">Click me</div>