-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
91 lines (67 loc) · 2.53 KB
/
Copy pathgallery.html
File metadata and controls
91 lines (67 loc) · 2.53 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image gallery</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="wrapper">
<div class="container">
<h1>MY GALLERY</h1>
<div class="gallery">
<figure class="cards">
<img src="image1.jpg" alt="">
<figcaption>Image1 </figcaption>
</figure>
<figure class="cards">
<img src="image2.jpeg" alt="">
<figcaption>Image2 </figcaption>
</figure>
<figure class="cards">
<img src="image3.jpg" alt="">
<figcaption>Image3 </figcaption>
</figure>
<figure class="cards">
<img src="image4.jpeg" alt="">
<figcaption>Image4 </figcaption>
</figure>
<figure class="cards">
<img src="image5.jpg" alt="">
<figcaption>Image5 </figcaption>
</figure>
<figure class="cards">
<img src="image6.jpeg" alt="">
<figcaption>Image6 </figcaption>
</figure>
<figure class="cards">
<img src="image7.jpg" alt="">
<figcaption>Image7 </figcaption>
</figure>
<figure class="cards">
<img src="image8.jpeg" alt="">
<figcaption>Image8 </figcaption>
</figure>
<figure class="cards">
<img src="image9.jpeg" alt="">
<figcaption>Image9 </figcaption>
</figure>
<figure class="cards">
<img src="image10.jpeg" alt="">
<figcaption>Image10 </figcaption>
</figure>
<figure class="cards">
<img src="image11.jpeg" alt="">
<figcaption>Image11 </figcaption>
</figure>
<figure class="cards">
<img src="image12.jpeg" alt="">
<figcaption>Image12 </figcaption>
</figure>
</div>
</div>
</div>
</div>
</body>
</html>