-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchive.html
More file actions
25 lines (24 loc) · 879 Bytes
/
archive.html
File metadata and controls
25 lines (24 loc) · 879 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
<!DOCTYPE html>
<html>
<head>
<title>Zonelets Archive</title>
<meta name="author" content="Marina Kittaka">
<meta name="description" content="The full list of posts on the Zonelets blog!">
<link rel="icon" href="./images/favicon.png" type="image/x-icon"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<link href="./style/style.css" rel="stylesheet" type="text/css" media="all">
</head>
<body>
<div id="container">
<div id="header">...</div>
<div id="content">
<h1>Zonelets Archive</h1>
<div id="postlistdiv"></div>
</div> <!-- end of div id="content" -->
<div id="footer"></div>
</div> <!-- end of div id="container" -->
<!-- Here's the link to our JavaScript! -->
<script src="./script.js"></script>
</body>
</html>