-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtravel.html
62 lines (58 loc) · 2.54 KB
/
travel.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Travel</title>
</head>
<body>
<a href = "">Skip to Main Content</a>
<header>
<nav>
<ul>
<li><a href = "index.html">Home</a></li>
<li><a href = "pets.html">Pets</a></li>
<li><a href = "travel.html">Travel</a></li>
<li><a href = "recipes.html">Recipes</a></li>
</ul>
</nav>
</header>
<main>
<h1>Travel</h1>
<div>
<h2>Yellowstone</h2>
<img src="images/yellowstone_sunset.jpg" width = "400" alt="This is the main pic of yellowstone">
<p>Yellowstone National Park, established in 1872, is a renowned natural reserve located primarily in Wyoming, with parts extending into Montana and Idaho. It is famed for its wildlife and its many geothermal features, notably Old Faithful geyser.</p>
<h3>Photo Gallery</h3>
<img src="images/yellowstone_travertine.JPG" width ="200" alt = "These features are formed over centuries by the deposition of minerals from hot spring water">
<img src="images/yellowstone_sulphur_springs.JPG" width ="200" alt="the park's volatile underground volcanic activity">
<video width="200" controls>
<source src="images/yellowstone_prism.MOV">
Your browser does not support the video tag. This was a video of yellowstone
</video>
<img src="images/yellowstone_cauldron.jpg" width ="200" alt="This is another pic of yellowstone">
<img src="images/yellowstone_saved.jpg" width ="200" alt="This is another pic which I saved of yellowstone">
<h3>Features</h3>
<ul>
<li>Tall</li>
<li>Big</li>
<li>Well-known across the world</li>
</ul>
<!-- Jackie Wolf -->
</div>
<div>
<h2>The Great Wall</h2>
<img src="images/the_great_wall.jpeg" width = "400" alt="This is the Great Wall">
<p>This is the stunning view from the Great Wall of China!</p>
</div>
<div>
<h2>Hollywood</h2>
<img src="images/hollywood_sign.jpeg" width = "400" alt="This is the Hollywood Sign">
<p>
If you like LA, you should definitely check out the Hollywood Sign!
</p></div>
<div></div>
<div></div>
</main>
</body>
</html>