-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (54 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<script src="js/prefixfree.min.js"></script>
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<header role="banner">
<div class="masthead">
<a href="#"> ....site title or logo, purposely not an h1.... </a>
</div>
<nav id="nav">
<ul>
<li><a href="#">
....main site nav list....
</a></li>
</ul>
</nav>
<div id="secondary-nav">
<ul>
<li><a href="#">
....other non-primary navigation doesn't belong in a nav element....
</a></li>
</ul>
</div>
</header>
<section id="main-content" role="main">
<h1> ....page title here.... </h1>
<article>
<header>
<h2>....article heading if needed....</h2>
<h3>....article sub-heading if needed....</h3>
</header>
....article content here....
</article>
<article>
....use more article elements if appropriate; if not, I still use divs....
</article>
</section>
<aside id="sidebar">
....site sidebar here....
</aside>
<footer>
.... footer content here ....
</footer>
</body>
</html>