-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheadings.html
55 lines (52 loc) · 1.61 KB
/
headings.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
45
46
47
48
49
50
51
52
53
54
55
<!-- HTML5 Sandbox -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Headings | HTML5 Sandbox</title>
<link rel="stylesheet" href="css/normalize.css">
<script src="js/script.js"></script>
</head>
<body>
<!-- Sectioning root -->
<header>
<h1>Simple <span>HTML5</span> page</h1>
</header>
<nav>
<ul>
<li><a href="headings.html">Headings</a></li>
<li><a href="summaryDetail.html">Summary & Detail</a></li>
<li><a href="time.html">Time</a></li>
<li><a href="translate.html">Translate</a></li>
<li><a href="mark.html">Mark</a></li>
<li><a href="microdata.html">Microdata</a></li>
</ul>
</nav>
<section>
<h1>Body headline 1</h1>
<!-- Good practice to use heading elements after sectioning element -->
<h2>Body headline 2</h1>
<section> <!-- Sectioning element -->
<h1>Section headline 1</h1>
<h2>Section headline 2</h2>
</section>
</section>
<aside>
<h3>Tags</h3>
<ul class="tag-cloud">
<li><a href="" rel="tag" class="w2">user</a></li>
<li><a href="" rel="tag" class="w8">design</a></li>
<li><a href="" rel="tag" class="w3">color</a></li>
<li><a href="" rel="tag" class="w5">form</a></li>
</ul>
<h3>Table of content</h3>
<a href="javascript:(function(){...})();"
title="TableDeMatiere">
Click here for displaying the table of contents!
</a>
</aside>
<footer>
<p>2015 Simple HTML5 page</p>
</footer>
</body>
</html>