-
Notifications
You must be signed in to change notification settings - Fork 0
/
travel.html
36 lines (34 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Travel Destinations</title>
</head>
<body>
<a href="#main">Skip to Main Content</a>
<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>
<main id="main">
<h1>Travel Destinations</h1>
<div>
<h2>Yellowstone Cauldtron</h2>
<img src="images/yellowstone_cauldron.jpg" width = "400" alt="yellowstone cauldron fuming">
<h2>Yellowstone Sulphur Springs</h2>
<img src="images/yellowstone_sulphur_springs.JPG" width = "400" alt="yellowstone sulphur springs">
<h2>Yellowstone Sunset</h2>
<img src="images/yellowstone_sunset.JPG" width = "400" alt="yellowstone sulphur springs">
<h2>Yellowstone Prism</h2>
<video width="200" controls>
<source src="images/yellowstone_prism.MOV"> </video>
<h2>Yellowstone Buffalo</h2>
<video width="200" controls>
<source src="images/yellowstone_buffalo.MOV"> </video>
</main>
</body>
</html>