blob: 12b3b14ebd391f129333421007aa97f7833d2827 (
plain)
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
|
<!doctype html>
<html lang="en">
<head>
<title>Mark's Kitchen - Zines</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" type="text/css" href="/css/styles.css">
<style>
.thumbnail img{
height: 500px;
display: block;
}
</style>
</head>
<body>
<div>
<h1>
<a class="navigation" href="/" title="marks.kitchen"><</a>
Zines
</h1>
<div class="thumbnail">
<a href="/static/pf6.pdf" title="Palace Flophouse 6">
<img src="/static/pf6.png">
<span>Palace Flophouse 6 (download pdf)</span>
</a>
</div>
</div>
</body>
</html>
|