-
Notifications
You must be signed in to change notification settings - Fork 24
/
index.html
executable file
·71 lines (51 loc) · 1.64 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page Title</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="public/css/screen.css">
</head>
<body>
<header role="banner">
<nav role="navigation">
<ul>
<li><a href="#">Page 1</a></li>
<li><a href="#">Page 2</a></li>
<li><a href="#">Page 3</a></li>
<li><a href="#">Page 4</a></li>
</ul>
</nav>
</header>
<div class="layout-split-4-2 page">
<main role="main" class="column">
<h1>Page Heading</h1>
<p>Use the HTML5 <code>main</code> element to wrap the central content of your page.</p>
<h2>Page sub-heading</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam aliquam, sem vitae tincidunt lobortis, nibh tellus faucibus elit, sed imperdiet enim mauris eget felis. Donec a varius sapien, at mattis nunc.</p>
<h2>Sub-heading</h2>
<ul>
<li>List item</li>
<li>List item</li>
<li>List item</li>
<li>List item</li>
</ul>
<h2>Sub-heading</h2>
<ol>
<li>List item</li>
<li>List item</li>
<li>List item</li>
<li>List item</li>
</ol>
</main><!-- End primary page content -->
<aside role="complementary" class="column">
<h3>Secondary page content</h3>
<p>Use the <code>aside</code> element if you need to include content that is not central to the focus of the page or is clearly of secondary importance.</p>
</aside>
<footer role="contentinfo">
<div>Page footer content</div>
</footer>
</body>
<script src="public/js/script.min.js"></script>
</html>