The Web Design Survival Guide | HTML Example 4
by todaly1
HTML
<!doctype html>
<head>
<meta charset="UTF-8">
<title>Title of the document</title>
</head>
<html>
<body>
<header>
<h2>h2 Headline inside the header tag</h2>
</header>
<main>
<section id="section-1">
<article>
<div class="column">
<p><strong>Paragraph inside a div tag named column with the strong tag.</strong></p>
</div>
<div class="column">
<p><del>Paragraph inside a div tag named column with the delete tag.
</del></p>
</div>
</article>
</section>
</main>
<footer>
<p>Paragraph inside the footer tag.</p>
</footer>
</body>
</html>