-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmangiesList.html
More file actions
56 lines (55 loc) · 1.5 KB
/
mangiesList.html
File metadata and controls
56 lines (55 loc) · 1.5 KB
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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Adolfo Barrientos">
<title>Mangie's List</title>
<style>
body{background-color: lightyellow;}
header{background-color: powderblue;}
section > h2{background-color: palegreen;}
aside>h3{margin: 0;}
aside{
border: thin dashed red;
color: red;
background-color: white;
float: right;
width: 200px;
margin: 5px;
padding: 10px;
}
</style>
</head>
<body>
<header>
<h1>Mangie's List</h1>
<h2><q>Simply the best reviews anywhere!</q></h2>
</header>
<nav> <a href="#dining"> Dining </a> | <a href="#clothing"> Clothing </a> </nav>
<article>
<section>
<aside>
<h3>Casey's Special</h3>
Half-price hot dogs when rotisseried more than 24 hours!
</aside>
<h2 id="dining">Dining</h2>
<ol>
<li>China Star</li>
<li>Casey's General Store</li>
</ol>
</section>
<section>
<h2 id="clothing">Clothing</h2>
<ol>
<li>Eddie baur</li>
<li>Kansas Speedway Boutique</li>
<li>Casey's General Store</li>
</ol>
</section>
</article>
<footer>
Questions? Email <address>mangie@gmail.com</address>
</footer>
<p>edit</p>
</body>
</html>