forked from LewisAndClark-CSD/html02
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (34 loc) · 898 Bytes
/
index.html
File metadata and controls
36 lines (34 loc) · 898 Bytes
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>
<!--
New Perspectives on HTML5 and CSS3, 7th Edition
Tutorial 5
Index page
Home Page of the Tutorial 5 Project
Author: Thorin Schmidt
Date: 2018-11-6
Filename: index.html
-->
<title>HTML 02 Links</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="reset.css" rel="stylesheet" />
<link href="styles.css" rel="stylesheet" />
</head>
<body>
<header>
<h1>HTML02 links</h1>
<nav class = "horizontal">
<ul>
<li><a href = "./case1/ph_plays.html">Case 1</a></li>
<li><a href = "./case2/mw_tour.html">Case 2</a></li>
<li><a href = "./case3/cw_class.html">Case 3</a></li>
<li><a href = "./case4/lake_home.html">Case 4</a></li>
</ul>
</nav>
</header>
<section>
</section>
</body
</html>