-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththanksgiving.html
More file actions
39 lines (39 loc) · 921 Bytes
/
thanksgiving.html
File metadata and controls
39 lines (39 loc) · 921 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
31
32
33
34
35
36
37
38
39
<html>
<head>
<title>Holiday Counter</title>
<link href="thanksgiving.css" type="text/css" rel="stylesheet">
</head>
<body>
<header>
<h1>Holiday Counter</h1>
</header>
<nav>
<ul>
<li>
<a href="index.html">Halloween</li></a>
<li>
<a href="thanksgiving.html">Thanksgiving</li></a>
<li>Christmas</li>
</ul>
</nav>
<section>
<article>
<h2>Thanksgiving</h2>
<h3>Thursday, November 24th, 2016</h3>
<p>It's turkey time baby!
</p>
<img src="http://arcphysicaltherapy.com/wp-content/uploads/2015/11/thanksgiving-food-catering-Denver-Spices-Cafe.jpg">
</article>
</section>
<aside>
<ul>
<h4>Sponsourse</h4>
<li>Joe's Bar</li>
<li>Ann's Diner</li>
</ul>
</aside>
<footer>
<h5>The Party People</h5>
</footer>
</body>
</html>