-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (56 loc) · 2.23 KB
/
index.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
<!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">
<link rel="shortcut icon" href="./images/favicon.ico" type="image/x-icon">
</head>
<body>
<div id="wrapper">
<div class="container">
<h1>My Gallery</h1>
<div class="gallery">
<figure class="card">
<!-- <img src="https://t3.ftcdn.net/jpg/02/34/21/58/360_F_234215884_pAF9PoUM5xEAsqW8g2oXsFUPRnkuOA14.jpg" alt=""> -->
<img src="images/image1.jpg" alt="">
<figcaption>Image1</figcaption>
</figure>
<figure class="card">
<img src="images/image2.jpeg" alt="">
<figcaption>Image2</figcaption>
</figure>
<figure class="card">
<img src="images/image3.jpeg" alt="">
<figcaption>Image3</figcaption>
</figure>
<figure class="card">
<img src="images/image4.jpeg" alt="">
<figcaption>Image4</figcaption>
</figure>
<figure class="card">
<img src="images/image5.jpeg" alt="">
<figcaption>Image5</figcaption>
</figure>
<figure class="card">
<img src="images/image6.jpeg" alt="">
<figcaption>Image6</figcaption>
</figure>
<figure class="card">
<img src="images/image7.jpeg" alt="">
<figcaption>Image7</figcaption>
</figure>
<figure class="card">
<img src="./images/image8.jpeg" alt="">
<figcaption>Image8</figcaption>
</figure>
<figure class="card">
<img src="images/image9.jpeg" alt="">
<figcaption>Image9</figcaption>
</figure>
</div>
</div>
</div>
</body>
</html>