-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
49 lines (48 loc) · 1.58 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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>MyZombieSite</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="site.css">
<script src="scripts.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
</head>
<body>
<div class="header">
<h1>ZOMBIES: THE SLIDESHOW!</h1>
<h2>Test your chosen jQuery slider and report any brains...er, bugs you find.</h2>
</div>
<div id="slider">
<h3>Slideshow goes here</h3>
</div>
<div class="nav">
<ul>
<li>Zombies One</li>
<li>Zombies Two</li>
<li>Zombies Three</li>
<li>Zombies Four</li>
</ul>
</div>
<div class="content">
<div class="main">
<p>I LIKE EATING BRAINS MAIN CONTENT AREA:</p>
<p>Nom nom. Lorem Ipsum</p>
<p>Nom nom. Lorem Ipsum</p>
</div>
<div class="sidebar">
<div>
<p>SIDEBAR OF HORRORS:</p>
<p>Lorem Ipsum</p>
</div>
</div>
</div>
<div class="footer">
<p>RISE FROM THE DEAD FOOTER:</p>
<p>Copyright Me--Forever! Just kidding, we're into sharing here in Zombieland.</p>
</div>
<script>
<!--put your jQuery scripts here!-->
</script>
</body>
</html>