-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (74 loc) · 3.07 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
<!Doctype html>
<html>
<head>
<title> My Favourite Places</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="bootstrap.min.css">
<meta charset=utf-8>
<meta name=viewport content="width=device-width, initial-scale=1">
</head>
<body style="background-color: #ccc">
<header>
<nav id="topnav">
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<div>
<div><center>
<img src="london.jpg" alt="london" width="100%" height="500px" style="border-radius:10px; padding-top:30px; ">
</center>
</div>
<div>
<h1>My Favourite Places</h1>
</div>
<center>
<div>
<table align="center">
<tr>
<td>
<div class="img-table">
<img src="campnou.jpg" alt="Camp nou" >
<a href="Campnou.html" height="300px" width ><br><p>The Camp Nou ,Barcelona spain</p></a>
</div>
</td>
<td>
<div class="img-table">
<img src="mongolia.jpg" alt="Mongolia">
<a href="mongolia.html" ><br><p>Mongolia , Wilderness </p></a>
</div>
</td>
<td>
<div class="img-table">
<img src="pantagonia.jpg" alt="Pantagonia">
<a href="pantagonia.html" ><br><p>Pantagonia</p></a>
</div>
</td>
</tr>
<tr>
<td>
<div class="img-table">
<img src="london.jpg" alt="London">
<a href="london.html" ><br><p>London</p></a>
</div>
</td>
<td>
<div class="img-table">
<img src="island.jpg" alt="Caribbean Islands">
<a href="island.html" ><br><p>Caribbean Islands</p></a>
</div>
</td>
<td>
<div class="img-table">
<img src="brazil.jpg" alt="brazil capital">
<a href="brazil.html" ><br><p>Brazil,Rio</p></a>
</div>
</td>
</tr>
</table>
</div>
</center>
</div>
</body>
</html>