<header role="banner">
    <h1>Website Title</h1>
    <!-- Logo, navigation, search, etc. -->
</header>
<div role="banner">
    <h1>Website Title</h1>
    <!-- Logo, navigation, search, etc. -->
</div>
<article>
    <header>
        <h2>Introduction to HTML</h2>
        <p>
            <time datetime="2022-05-13">May 13, 2022</time> by CodingCourses
        </p>
    </header>
    <p>
        HTML (HyperText Markup Language) is the fundamental language used to create web pages...
    </p>
    <p>
        <a href="https://example.com/html">Read more...</a>
    </p>
</article>
<header>
    <!-- Table of contents -->
    <nav>
        <ul>
            <li><a href="#section1">Section 1</a></li>
            <li><a href="#section2">Section 2</a></li>
            <li><a href="#section3">Section 3</a></li>
        </ul>
    </nav>
    
    <!-- Search form -->
    <form action="/search" method="get">
        <label for="search">Search</label>
        <input id="search" type="text" name="q" placeholder="Enter a keyword">
        <button type="submit">Search</button>
    </form>
    
    <!-- Logo -->
    <img src="logo.png" alt="Website logo">
</header>