-
Notifications
You must be signed in to change notification settings - Fork 0
/
11_semantics.html
44 lines (40 loc) · 989 Bytes
/
11_semantics.html
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
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Semantics</title>
</head>
<body>
<header>
<hgroup>
<h1>Heading</h1>
<p>Lorem ipsum dolor sit amet.</p>
</hgroup>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About us</a></li>
<li><a href="#">Contact us</a></li>
</ul>
</nav>
</header>
<article>
<hgroup>
<h1>Lorem ipsum dolor sit amet.</h1>
<h2>Lorem, ipsum dolor.</h2>
<h3><time datetime="16-12-2024">16th December</time></h3>
</hgroup>
</article>
<section>
<p>Lorem ipsum dolor sit.</p>
</section>
<section>
<code>console.log("Hello, World!!!")</code>
</section>
<footer>
<address>Enter the address here</address>
<p>© Copyrights 2017</p>
</footer>
</body>
</html>