forked from DrDeke/html-allied
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PHOTO_TEMPLATE.html
84 lines (75 loc) · 2.11 KB
/
PHOTO_TEMPLATE.html
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!doctype html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<title>A Happy Simple HTML Page for Rusty</title>
<style>
body { color: #333; background: #fff; font-family: sans-serif; }
a { color: #369; }
figure {
display: block;
max-width: 400px;
margin: 0 auto 50px;
}
figcaption { display: block; }
img { max-width: 100%; }
.breadcrumbs {
padding: 0;
margin: 0 0 .5em;
font-size: .8em;
list-style: none;
}
.breadcrumbs > li {
display: inline;
padding: 0;
margin: 0;
}
.breadcrumbs > li + li:before {
content: " \\ ";
}
.notice {
text-align: center;
}
</style>
</head>
<body>
<h1>Happy Simple HTML Page — for Rusty</h1>
<ol class="breadcrumbs">
<li><a href="/">Site Home</a></li>
<li><a href="/level-2">Happy Simple HTML Page</a></li>
<li><a href="/level-2/room-b">For Rusty</a></li>
</ol>
<hr>
<p class="notice">Pages loading too slowly? <a href="screw-the-fcc.html">Write an angry letter to the FCC.</a></p>
<figure>
<a href="FULL_RESOLUTION">
<img src="http://placekitten.com/400/300" alt="">
</a>
<figcaption></figcaption>
</figure>
<figure>
<a href="FULL_RESOLUTION">
<img src="http://placekitten.com/460/345" alt="Kitten 1, looking cute.">
</a>
<figcaption>This kitten is fuzzy. But also cute.</figcaption>
</figure>
<figure>
<a href="FULL_RESOLUTION">
<img src="http://placekitten.com/480/360" alt="Kittem 2, also cute">
</a>
<figcaption>This kitten would like to be your friend. Won't you friend the kitten?</figcaption>
</figure>
<figure>
<a href="FULL_RESOLUTION">
<img src="http://placekitten.com/500/375" alt="Kitten 3, does not need you.">
</a>
<figcaption>This kitten wants belly rubs. SO MANY BELLY RUBS/</figcaption>
</figure>
<figure>
<a href="FULL_RESOLUTION">
<img src="http://placekitten.com/520/390" alt="Indifferent kitten">
</a>
<figcaption>This kitten is not amused the the magic red dot.</figcaption>
</figure>
</body>
</html>