-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlists.html
More file actions
43 lines (40 loc) · 1.12 KB
/
lists.html
File metadata and controls
43 lines (40 loc) · 1.12 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
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lists</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="lists.css">
</head>
<body>
<header>
<div class="main">
<a href = "index.html">Home</a>
<a>/</a>
<a href = "project.html">Projects</a>
<a>/</a>
<a href = "lists.html">Lists</a>
</div>
<div class = "social">
<div></div>
<a>Twitter</a>
<a>Youtube</a>
<a>Github</a>
</div>
</header>
<section>
<div class="list">
<ol>
<li><a href="../reading.html">Reading</a></li>
<li><a href="/movie.html">Movie</a></li>
<li><a href="/ideas.html">Ideas</a></li>
<li><a href="/travel.html">Travel</a></li>
</ol>
</div>
<div class="images">
</div>
</section>
</body>
</html>