forked from GalvanizeOpenSource/Learn-To-Code-Week-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (53 loc) · 1.92 KB
/
Copy pathindex.html
File metadata and controls
61 lines (53 loc) · 1.92 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
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<title>Batman Party</title>
<link href="CSS/style.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Coming+Soon' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="wrap">
<div class="section sTop">
<div class="inner">
<h1 class="title">Batman is the best</h1>
<h2 class="subtitle">Everyone else is worse</h2>
</div>
</div>
<div class="subMenu" >
<div class="inner">
<a href="#sTop" class="subNavBtn">Home</a>
<a href="#s1" class="subNavBtn">Movie Batman</a>
<a href="#s2" class="subNavBtn">TV Batman</a>
<a href="#s3" class="subNavBtn">Video Game Batman</a>
<a href="https://twitter.com/thebatman" class="subNavBtn extLink end">Follow him on twitter</a>
</div>
</div>
<div class="section s1" id="s1">
<div class="inner ">
<h1>Movie Batman</h1>
<div class="section">
<a href="http://www.amazon.com/Knight-Trilogy-Batman-Begins-Blu-ray/dp/B009JBZH54"><img src="http://static.guim.co.uk/sys-images/Guardian/Pix/pictures/2013/11/19/1384856699522/Christian-Bale-as-Batman-010.jpg"/></a>
</div>
</div>
</div>
<div class="section s2" id="s2">
<div class="inner">
<h1>TV Batman</h1>
<h2>The Animated Series</h2>
<div class="section">
<a href="https://www.youtube.com/watch?v=r3ID92BAYYQ"><img src="http://cdn.playbuzz.com/cdn/52ee4ad7-61d7-46b4-8ff7-accad3a12e4c/08cbc363-a8d2-4b97-9ea7-2ed1b240216b.jpg" title="Kevin Conroy at his finest"/></a>
</div>
</div>
</div>
<div class="section s3" id="s3">
<div class="inner">
<h1>Video Game Batman</h1>
<h2>The Arkham Series</h2>
<div class="section">
<a href="http://www.amazon.com/Batman-Arkham-City-Playstation-3/dp/B002I0F5M8"><img src="http://media1.gameinformer.com/imagefeed/screenshots/BatmanArkhamCity/1BatmanArkhamCity_Hero_07_picnik.jpg" title="Amazing Game"/></a>
</div>
</div>
</div>
</div>
</body>
</html>