-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (35 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hotel Natoma</title>
<!--
Hotel Natoma Main web page
Filename: index.html
Author: Mohamed Hassan
Date: 02/04/2018
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"> Home</a>
<a href="nearby.html">Nearby</a>
</nav>
<article>
<h2>San Francisco</h2>
<p>A low-impact, Earth-friendly home base in the center of everything San Francisco has to offer.</p>
</article>
<footer>
<p>564 Natoma St.</p>
<p>San Francisco, CA 94103</p>
<p>(415) 555-8378</p>
</footer>
</body>
</html>