1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38<!DOCTYPE html>
<html>
<head>
<title>Semantic Markup Page</title>
</head>
<body>
<!-- Using semantic HTML elements as they are intended to be used -->
<header>
<h1>Welcome to our Semantic Markup Page</h1>
</header>
<main>
<section>
<h2>About Semantic Markup</h2>
<p><strong>Semantic HTML</strong> is the use of HTML markup to reinforce the semantics, or meaning, of the information in webpages and web applications rather than merely to define its presentation or look.</p>
<blockquote cite="https://developer.mozilla.org/en-US/docs/Glossary/Semantics">
Semantics is the study of meaning.
</blockquote>
</section>
<section>
<h2>Benefits of Semantic Markup</h2>
<ol>
<li>Improves SEO</li>
<li>Improves accessibility</li>
<li>Makes the code easier to read and maintain</li>
</ol>
</section>
</main>
<footer>
<p>© 2023 Semantic Markup Page</p>
</footer>
</body>
</html>