-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (76 loc) · 2.57 KB
/
index.html
File metadata and controls
76 lines (76 loc) · 2.57 KB
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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>A Gallery with Cool Hover Effects</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="css/main.css">
<script src="js/modernizr.custom.js"></script>
</head>
<body>
<ul class="grid cs-style-3">
<li>
<figure>
<img src="img/img1.jpg" alt="img01">
<figcaption>
<h3>Title</h3>
<span>Author</span>
<a href="#">Take a look</a>
</figcaption>
</figure>
</li>
<li>
<figure>
<img src="img/img2.jpg" alt="img02">
<figcaption>
<h3>Title</h3>
<span>Author</span>
<a href="#">Take a look</a>
</figcaption>
</figure>
</li>
<li>
<figure>
<img src="img/img3.jpg" alt="img03">
<figcaption>
<h3>Title</h3>
<span>Author</span>
<a href="#">Take a look</a>
</figcaption>
</figure>
</li>
<li>
<figure>
<img src="img/img4.jpg" alt="img04">
<figcaption>
<h3>Title</h3>
<span>Author</span>
<a href="#">Take a look</a>
</figcaption>
</figure>
</li>
<li>
<figure>
<img src="img/img5.jpg" alt="img05">
<figcaption>
<h3>Title</h3>
<span>Author</span>
<a href="#">Take a look</a>
</figcaption>
</figure>
</li>
<li>
<figure>
<img src="img/img6.jpg" alt="img06">
<figcaption>
<h3>Title</h3>
<span>Author</span>
<a href="#">Take a look</a>
</figcaption>
</figure>
</li>
</ul>
<script src="js/toucheffects.js"></script>
</body>
</html>