-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (69 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mach Gallery</title>
<link rel="stylesheet" href="css/style.css">
<style>
@import url(style.css);
</style>
</head>
<body>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="pages/yellowstone.html">Yellowstone Park</a></li>
<li><a href="pages/crater_lake.html">Crater Lake</a></li>
<li><a href="pages/niagara_falls.html">Niagara Falls</a></li>
<li><a href="pages/nyc.html">New York City</a></li>
<li><a href="pages/spy_museum.html">Spy Museum</a></li>
<li><a href="pages/about.html">About</a></li>
</ul>
<div class="welcome1">
<h2><u>Welcome to Mach Gallery</u></h2>
<div class="welcome2">Use these reference images to help plan your next vacation around the U.S</div>
</div>
<div class="hero">
<div class="hero-banner">
<img src="images/home/20190628_095349.jpg" alt="image 1">
<img src="images/home/PXL_20210812_153204676.jpg" alt="image 2">
<img src="images/home/PXL_20230708_211444757.jpg" alt="image 3">
</div>
</div>
<table>
<tr>
<th>Name</th>
<th>Location</th>
<th>Year Established</th>
</tr>
<tr>
<td>Yellowstone National Park</td>
<td>Wyoming</td>
<td>March 1, 1872</td>
</tr>
<tr>
<td>Crater Lake National Park</td>
<td>Oregon</td>
<td>May 22, 1902</td>
</tr>
<tr>
<td>Niagara Falls State Park</td>
<td>New York State</td>
<td>1885-1887</td>
</tr>
<tr>
<td>New York City</td>
<td>New York State</td>
<td>1625</td>
</tr>
<tr>
<td>International Spy Museum</td>
<td>Washington, D.C</td>
<td>July 19, 2002</td>
</tr>
</table>
<footer>
<p>© 2024 Mach Gallery. All rights reserved</p>
</footer>
</body>
</html>