-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
77 lines (77 loc) · 3 KB
/
gallery.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
<!DOCTYPE html>
<html>
<head>
<title>Gallery</title>
<meta id="viewportMetaTag" name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0, initial-scale=1.0, user-scalable=no">
<link href="styles.css" rel="stylesheet" />
</head>
<body>
<div class="photos-container">
<a href="photo.html#1">
<div class="grid-item" style="top:0; left:0; width:104px;">
<img src="http://chuchuva.com/mobile-gallery/01.jpg" alt="" height="104" />
</div>
</a>
<a href="photo.html#2">
<div class="grid-item" style="top:0; left:108px; width:102px;">
<img src="http://chuchuva.com/mobile-gallery/02.jpg" alt="" height="104" />
</div>
</a>
<a href="photo.html#3">
<div class="grid-item" style="top:0; left:214px; width:104px;">
<img src="http://chuchuva.com/mobile-gallery/03.jpg" alt="" height="104" />
</div>
</a>
<a href="photo.html#4">
<div class="grid-item" style="top:108px; left:0; width:104px;">
<img src="http://chuchuva.com/mobile-gallery/04.jpg" alt="" height="104" />
</div>
</a>
<a href="photo.html#5">
<div class="grid-item" style="top:108px; left:108px; width:102px;">
<img src="http://chuchuva.com/mobile-gallery/05.jpg" alt="" height="104" />
</div>
</a>
<a href="photo.html#6">
<div class="grid-item" style="top:108px; left:214px; width:104px;">
<img src="http://chuchuva.com/mobile-gallery/06.jpg" alt="" height="104" />
</div>
</a>
<a href="photo.html#7">
<div class="grid-item" style="top:216px; left:0; width:104px;">
<img src="http://chuchuva.com/mobile-gallery/07.jpg" alt="" height="104" />
</div>
</a>
<a href="photo.html#8">
<div class="grid-item" style="top:216px; left:108px; width:102px;">
<img src="http://chuchuva.com/mobile-gallery/08.jpg" alt="" height="104" />
</div>
</a>
<a href="photo.html#9">
<div class="grid-item" style="top:216px; left:214px; width:104px;">
<img src="http://chuchuva.com/mobile-gallery/09.jpg" alt="" height="104" />
</div>
</a>
<a href="photo.html#10">
<div class="grid-item" style="top:324px; left:0; width:104px;">
<img src="http://chuchuva.com/mobile-gallery/10.jpg" alt="" height="104" />
</div>
</a>
<a href="photo.html#11">
<div class="grid-item" style="top:324px; left:108px; width:102px;">
<img src="http://chuchuva.com/mobile-gallery/11.jpg" alt="" height="104" />
</div>
</a>
<a href="photo.html#12">
<div class="grid-item" style="top:324px; left:214px; width:104px;">
<img src="http://chuchuva.com/mobile-gallery/12.jpg" alt="" height="104" />
</div>
</a>
<a href="photo.html#13">
<div class="grid-item" style="top:432px; left:0; width:104px;">
<img src="http://chuchuva.com/mobile-gallery/13.jpg" alt="" height="104" />
</div>
</a>
</div>
</body>
</html>