Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 377 Bytes

File metadata and controls

28 lines (24 loc) · 377 Bytes

Semantic HTML

Article

<article> <h2>Article Title</h2> <p>Article content goes here.</p> </article>

Header

<header>
    <h1>Website Header</h1>
</header>

Footer

<footer>
    <p>&copy; 2023 MyWebsite</p>
</footer>

Section

<section>
    <h2>Section Title</h2>
    <p>Section content goes here.</p>
</section>