-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (28 loc) · 950 Bytes
/
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
<!doctype html>
<html>
<head>
<meta charset=utf-8>
<meta name=viewport content="width=device-width, initial-scale=1, user-scalable=no">
<title>The Best Website You've Never Made</title>
<link rel=stylesheet href="css/style.css">
</head>
<body>
<div class="container">
<header>
<h2>Title</h2>
<nav>
<ul>
<li><a href="#">Page One</a></li>
<li><a href="#">Page Two</a></li>
<li><a href="#">Page Three</a></li>
</ul>
</nav>
</header>
<section class="content">
</section>
<footer>
</footer>
</div>
<script data-main="js/main" src="components/requirejs/require.js"></script>
</body>
</html>