forked from vikingeducation/demo_html_in_action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (30 loc) · 816 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
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Title -->
<title>HTML in Action</title>
</head>
<body>
<!-- Main Header -->
<header>
<h1>HTML in Action</h1>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/basics.html">Basics</a></li>
<li><a href="/lists.html">Lists</a></li>
<li><a href="/forms.html">Forms</a></li>
<li><a href="/tables.html">Tables</a></li>
</ul>
</nav>
</header>
<!-- Image -->
<img src="/assets/images/html5.png" alt="HTML5">
<!-- Main Footer -->
<footer>
A demo by <a href="http://vikingcodeschool.com">Viking Code School</a>
</footer>
</body>
</html>