-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (38 loc) · 1.23 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
<!DOCTYPE html>
<html>
<head>
<title>HTML5 Template</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Adding HTML5 SHIV for fallback for older browsers -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
</head>z
<body>
<header>
<!-- Header Content -->
</header>
<nav>
<!-- Main Navigation -->
</nav>
<nav class="secondary">
<!-- Secondary Navigation -->
</nav>
<main>
<h1>Title</h1>
<!-- Main Content Area -->
<article>
<h2>Title</h2>
<!-- Article Content -->
</article>
</main>
<aside>
<!-- For Use for example a Right Column -->
</aside>
<footer>
<!-- Footer Content -->
</footer>
<!-- Javascript files and Libraries are the last thing before body tag -->
<script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
<script src="/assets/js/main.js" type="text/javascript"></script>
</body>
</html>