-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSemantics.html
More file actions
34 lines (34 loc) · 855 Bytes
/
Semantics.html
File metadata and controls
34 lines (34 loc) · 855 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Heading Elements</title>
</head>
<body>
<header>
header element - Info like logo,tag lines,etc.
Navigation is sometimes in header as well.
<nav>nav - usually has links to different parts
of website.
</nav>
</header>
<h1>Main Heading - crucial for SEO(search engine ranking)</h1>
<section>
Section 1
<article>Article 1</article>
<article>Article 2</article>
</section>
<section>
Section 2
<article>Article 3</article>
<article>Article 4</article>
<div>Regural div element</div>
</section>
<aside>
aside - Info related to the main topic
</aside>
<footer>
footer
</footer>
</body>
</html>