-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTM_C-9.html
34 lines (33 loc) · 905 Bytes
/
HTM_C-9.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
<!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">
<script src="modernizr.custom.62074.js"></script>
</head>
<body>
<header>
<h1>Hotel Natoma</h1>
</header>
<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. :: San Francisco, CA 94103 :: (415) 555-8378</p>
</footer>
</body>
</html>