-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnearby.html
39 lines (37 loc) · 1.02 KB
/
nearby.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hotel Natoma</title>
<!--
Hotel Natoma What's Nearby web page
Filename: nearby.html
Author:
Date:
HTML5 and CSS3 Illustrated Unit C, Independent Challenge 3
-->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link href="Styles.css" rel="stylesheet" />
<script src="modernizr.custom.62074.js"></script>
</head>
<body>
<header>
<h1>Hotel Natoma</h1>
</header>
<nav>
<a href="index.html">Back to home</a>
</nav>
<article>
<h2>What's Nearby</h2>
<p>Asian Art Museum</p>
<p>City Hall</p>
<p>Civic Center Plaza</p>
<p>United Nations Plaza</p>
<p>Cable Car turnaround</p>
<p>Union Square</p>
</article>
<footer>
<p>564 Natoma St.</p><p> San Francisco, CA 94103 </p><p> (415) 555-8378</p>
</footer>
</body>
</html>