-
Notifications
You must be signed in to change notification settings - Fork 0
/
gogo.html
57 lines (49 loc) · 1.11 KB
/
gogo.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
<html>
<head>
<style>
div.gallery {
margin: 5px;
border: 1px solid #ccc;
float: left;
width: 180px;
}
div.gallery:hover {
border: 1px solid #777;
}
div.gallery img {
width: 100%;
height: auto;
}
div.desc {
padding: 15px;
text-align: center;
}
</style>
</head>
<body>
<div class="gallery">
<a target="_blank" href="gogo/ContactSheet-001.jpg">
<img src="gogo/ContactSheet-001.jpg" alt="001" width="240" height="300">
</a>
<div class="desc">gogo-001</div>
</div>
<div class="gallery">
<a target="_blank" href="gogo/ContactSheet-002.jpg">
<img src="gogo/ContactSheet-002.jpg" alt="002" width="240" height="300">
</a>
<div class="desc">gogo-002</div>
</div>
<div class="gallery">
<a target="_blank" href="gogo/ContactSheet-003.jpg">
<img src="gogo/ContactSheet-003.jpg" alt="003" width="240" height="300">
</a>
<div class="desc">gogo-003</div>
</div>
<div class="gallery">
<a target="_blank" href="gogo/ContactSheet-004.jpg">
<img src="gogo/ContactSheet-004.jpg" alt="004" width="240" height="300">
</a>
<div class="desc">gogo-004</div>
</div>
</body>
</html>