forked from LewisAndClark-CSD/html05
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (37 loc) · 1.01 KB
/
index.html
File metadata and controls
39 lines (37 loc) · 1.01 KB
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
<!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>Tutorial 5</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>Tutorial 5 links</h1>
<nav class = "horizontal">
<ul>
<li><a href = "./tutorial/tf_home.html">Tutorial</a></li>
<li><a href = "./review/tf_tips.html">Review</a></li>
<li><a href = "./case1/gp_cover.html">Case 1</a></li>
<li><a href = "./case2/wc_hole01.html">Case 2</a></li>
<li><a href = "./case3/cw_home.html">Case 3</a></li>
<li><a href = "./case4/jb_home.html">Case 4</a></li>
</ul>
</nav>
</header>
<section>
<img src = "1600.jpeg"/>
</section>
</body
</html>