-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (69 loc) · 2.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div class="container">
<h2 class="heading-text">My Responsive Photo Gallery</h2>
<div class="photo-gallery">
<div class="column">
<div class="photo-item">
<img src="https://source.unsplash.com/OyCl7Y4y0Bk" alt="" />
<div class="overlay"><span>Apple on Books</span></div>
</div>
<div class="photo-item">
<img src="https://source.unsplash.com/Kl1gC0ve620" alt="" />
<div class="overlay"><span>I love to learn!</span></div>
</div>
<div class="photo-item">
<img src="https://source.unsplash.com/55btQzyDiO8" alt="" />
<div class="overlay">
<span>I love reading so much I wish I owned a library</span>
</div>
</div>
</div>
<div class="column">
<div class="photo-item">
<img src="https://source.unsplash.com/g0dBbrGmMe0" alt="" />
<div class="overlay">
<span>One of my favourite foods - Nasi Goreng!</span>
</div>
</div>
<div class="photo-item">
<img src="https://source.unsplash.com/v1OW17UcR-Q" alt="" />
<div class="overlay"><span>Making matcha calms me</span></div>
</div>
<div class="photo-item">
<img src="https://source.unsplash.com/Wpg3Qm0zaGk" alt="" />
<div class="overlay"><span>I love gelato too!</span></div>
</div>
</div>
<div class="column">
<div class="photo-item">
<img src="https://source.unsplash.com/W3FC_bCPw8E" alt="" />
<div class="overlay">
<span>I wish to visit Lake Bled some day</span>
</div>
</div>
<div class="photo-item">
<img src="https://source.unsplash.com/rBRZLPVLQg0" alt="" />
<div class="overlay">
<span>To see beautiful landscapes like this</span>
</div>
</div>
<div class="photo-item">
<img src="https://source.unsplash.com/RRksEVVoU8o" alt="" />
<div class="overlay">
<span>To watch the aurora with my eyes</span>
</div>
</div>
</div>
</div>
</div>
</body>
</html>