-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChallenge 9 _ Travel Webpage.html
37 lines (32 loc) · 1.12 KB
/
Challenge 9 _ Travel Webpage.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
<!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>Challenge: Links you love</title>
<style>
h1 {
color: rgb(232, 14, 14);
}
</style>
</head>
<body>
<h1>Travel webpage</h1>
<ol>
<li> Delhi, India</li>
<a target="_blank" href="https://en.wikipedia.org/wiki/Delhi">To learn more click me<br>
<img src="C:\Users\user\Downloads\Jama_Masjid_2011.jpg" alt= "Jama Masjid mosque, Dehli, India." width="350">
</a>
<li>Edinburgh</li>
<a href="https://en.wikipedia.org/wiki/Edinburgh"> To learn more about Edinburgh click....<br>
<img src="C:\Users\user\Pictures\Screenshots\Screenshot (77).png" alt="TheThemeBuildingLosAngeles" width="350"heigth="150">
</a>
</a>
<li>United Arab Emirate</li>
<a href="https://en.wikipedia.org/wiki/Tourism_in_the_United_Arab_Emirates"> To learn more click....<br>
<img src="C:\Users\user\Downloads\Burj_Khalifa.jpg" width="350"heigth="150">
</a>
</ol>
</body>
</html>