-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (50 loc) · 1.38 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
<!doctype html>
<html>
<head>
<title> Amazeriffic </title>
<link rel="stylesheet" type="text/css" href="reset.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<header>
<h1>Amazeriffic</h1>
<nav>
<a href="#">Sign Up!</a> |
<a href="#">FAQ</a> |
<a href="#">Support</a>
</nav>
</header>
</div>
<main>
<h2>Amazeriffic will change your life!</h2>
<P> It's the next greatest shiny new thing!</P>
<h3>Here's why you need Amazeriffic</h3>
<ul>
<li>It's good</li>
<li>It's great</li>
<li>It's amazeriffic!!</li>
</ul>
<img src="lightbulb.png" alt="an image of a lightbulb">
</main>
<footer>
<div class='contact'>
<h5>Contact Us</h5>
<p><i>Amazeriffic</i></p>
<p>555 Fiftieth Street</p>
<p>Asheville, NC 28801</p>
</div>
<div class='sitemap'>
<h5>Sitemap</h5>
<ul>
<li><a href='#'>Home</a></li>
<li><a href='#'>About Us</a></li>
<li><a href='#'>Privacy</a></li>
<li><a href='#'>Support</a></li>
<li><a href='#'>FAQ</a></li>
<li><a href='#'>Careers</a></li>
</ul>
</div>
</footer>
</body>
</html>