-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsuper-semantic-html5-page.html
76 lines (71 loc) · 2.09 KB
/
super-semantic-html5-page.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<title>Super Semantic Page</title>
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
<!-- <script src='./resources/app.js'></script>
<link rel='stylesheet' type='text/css' href='./resources/style.css'> -->
<style type='text/css'>
</style>
</head>
<body>
<header>
<h1>Super Semantic HTML5 Sampler Page</h1>
</header>
<nav>
<ul>
<li><a href='#what'>Definition</a></li>
<li><a href='#section'>Sectioning</a></li>
<li><a href='#heading'>Headings</a></li>
<li><a href='#phrases'>Phrasing</a></li>
<li><a href='#embeded'>Embeded</a></li>
<li><a href='#interactive'>Interactive</a></li>
<li><a href='#palpable'>Palpable</a></li>
</ul>
</nav>
<main>
<section id='what'>
<h2>What is Semantic HTML?</h2>
<p>Short description here</p>
<a href='http://bl.ocks.org/mbostock/1093130'><img alt='placeholder for d3 force graph layout nodes' src="http://www.compas.ox.ac.uk/media/British-icons-small.jpg" height="auto" width="100px" /></a>
</section>
<article id='section'>
<h2>Sectioning Elements</h2>
<p> Describe all the sectioning elements here</p>
</article>
<article id='heading'>
<h2>Heading Elements</h2>
<p> Describe all the heading elements here </p>
</article>
<article id='phrases'>
<h2>Phrasing Elements</h2>
<p> Describe all the phrasing elements here </p>
</article>
<article id='embeded'>
<h2>Embeded Elements</h2>
<p> Describe all the embeded elements here </p>
</article>
<article id='interactive'>
<h2>Interactive Elements</h2>
<p> Describe all the interactive elements here </p>
</article>
<article id='palpable'>
<h2>Palpable Elements</h2>
<p> Describe all the palpable elements here </p>
</article>
<aside>
<figure>
<img src="http://www.compas.ox.ac.uk/media/British-icons-small.jpg" height="auto" width="100px" />
<figcaption>Figure caption goes here</figcaption>
</figure>
<p> Oi! Oi! Oi! Oi! Oi! Oi! Oi! Oi! </p>
</aside>
</main>
<footer>
<hr />
Copyright (C) 2016. All rights reserved.
</footer>
</body>
<script>
</script>
</html>