-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (46 loc) · 1.58 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
<!DOCTYPE html>
<html>
<head>
<title>
css grid
</title>
<link rel="stylesheet" type="text/css" href="life_in_wild.css">
</head>
<body>
<h1>I have traveled to </h1>
<div class="container">
<div class="box">
<img src="https://cdn.pixabay.com/photo/2014/11/13/23/34/london-530055_1280.jpg" alt="london image">
<h2 class="title"> london </h2>
</div>
<div class="box">
<img src="https://cdn.pixabay.com/photo/2016/12/15/23/22/palace-1910258_1280.jpg" alt="spain image">
<h2 class="title"> Spain </h2>
</div>
<div class="box">
<img src="https://cdn.pixabay.com/photo/2017/08/31/05/36/new-york-2699520_1280.jpg" alt="New York image">
<h2 class="title"> New York </h2>
</div>
<div class="box">
<img src="https://cdn.pixabay.com/photo/2019/10/29/15/57/vancouver-4587302_1280.jpg" alt="canada image">
<h2 class="title"> Canada </h2>
</div>
<div class="box">
<img src="https://cdn.pixabay.com/photo/2019/03/31/14/31/italy-4093227_1280.jpg" alt="Italy image">
<h2 class="title"> Italy </h2>
</div>
<div class="box">
<img src="https://cdn.pixabay.com/photo/2017/01/14/20/55/cairo-1980350_1280.jpg" alt="Egyp image">
<h2 class="title"> Egyp </h2>
</div>
<div class="box">
<img src="https://cdn.pixabay.com/photo/2018/11/29/21/19/hamburg-3846525_1280.jpg" alt="Germany image">
<h2 class="title"> Germany </h2>
</div>
<div class="box">
<img src="https://cdn.pixabay.com/photo/2013/11/25/09/47/japan-217878_1280.jpg" alt="tokyo image">
<h2 class="title"> Tokyo </h2>
</div>
</div>
</body>
</html>