-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (27 loc) · 897 Bytes
/
index.html
File metadata and controls
30 lines (27 loc) · 897 Bytes
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Temporary Home page | CIT 230 class | Frontend development</title>
<meta name="description" content="Short description of the site" />
<meta name="viewport" content="width=device-width">
</head>
<body>
<header>
<h1>Temporary Home Page</h1>
<nav>
<ul>
<li><a href="index.html">Home</a> </li>
<li><a href="homework/mobile-analysis.html">Mobile Analysis</a> </li>
</ul>
</nav>
</header>
<main>
<h2>What we are about.</h2>
<p>paragraph describing what this site is all about...and what you can expect to see here</p>
</main>
<footer>
© 2017 Bro Thompson
</footer>
</body>
</html>