-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
129 lines (117 loc) · 4.82 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Gallery</title>
<link rel="stylesheet" href="styles.css">
<link rel="shortcut icon" href="camera.jpg" type="image/x-icon">
<link rel="shortcut icon" href="camera.jpg" type="image/x-icon">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@700;800;900&display=swap" rel="stylesheet">
</head>
<body>
<div id="wrapper">
<div class="container">
<h1 class="heading">My Gallery</h1>
<div class="gallery">
<figure class="card">
<img src="image1.jpg" alt="">
<figcaption>Image 1</figcaption>
</figure>
<figure class="card">
<img src="image2.jpg" alt="">
<figcaption>Image 2</figcaption>
</figure>
<figure class="card">
<img src="image3.jpg" alt="">
<figcaption>Image 3</figcaption>
</figure>
<figure class="card">
<img src="image4.jpg" alt="">
<figcaption>Image 4</figcaption>
</figure>
<figure class="card">
<img src="image5.jpg" alt="">
<figcaption>Image 5</figcaption>
</figure>
<figure class="card">
<img src="image6.jpg" alt="">
<figcaption>Image 6</figcaption>
</figure>
<figure class="card">
<img src="image7.jpg" alt="">
<figcaption>Image 7</figcaption>
</figure>
<figure class="card">
<img src="image8.jpg" alt="">
<figcaption>Image 8</figcaption>
</figure>
<figure class="card">
<img src="image9.jpg" alt="">
<figcaption>Image 9</figcaption>
</figure>
<figure class="card">
<img src="image10.jpg" alt="">
<figcaption>Image 10</figcaption>
</figure>
<figure class="card">
<img src="image11.jpg" alt="">
<figcaption>Image 11</figcaption>
</figure>
<figure class="card">
<img src="image12.jpg" alt="">
<figcaption>Image 12</figcaption>
</figure>
<figure class="card">
<img src="image13.jpg" alt="">
<figcaption>Image 13</figcaption>
</figure>
<figure class="card">
<img src="image14.jpg" alt="">
<figcaption>Image 13</figcaption>
</figure>
<figure class="card">
<img src="image15.jpg" alt="">
<figcaption>Image 13</figcaption>
</figure>
</div>
<div class="last">
Made with ❤️ by Varun Punia.
</div>
<div class="footer-links">
<a class="footer-link" href="https://www.linkedin.com/in/varun-punia-068841229/">
<img class="image" src="linkedin.png" alt="">
</a>
<a class="footer-link" href="https://www.instagram.com/varunpuniaa/?hl=en">
<img class="image" src="instagram.png" alt="">
</a>
<a class="footer-link" href="https://github.com/VARUN-009">
<img class="image" src="github.png">
</a>
<a class="footer-link" href="mailto:[email protected]">
<img class="image" src="gmail.png">
</a>
</div>
</div>
</div>
</body>
</html>
<!-- <div class="last">
Made with ❤️ by Varun Punia.
</div>
<div class="footer-links">
<a class="footer-link" href="https://www.linkedin.com/in/varun-punia-068841229/">
<img class="image" src="linkedin.png" alt="">
</a>
<a class="footer-link" href="https://www.instagram.com/varunpuniaa/?hl=en">
<img class="image" src="instagram.png" alt="">
</a>
<a class="footer-link" href="https://github.com/VARUN-009">
<img class="image" src="github.png">
</a>
<a class="footer-link" href="mailto:[email protected]">
<img class="image" src="gmail.png">
</a>
</div>
-->