-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (101 loc) · 3.55 KB
/
Copy pathindex.html
File metadata and controls
111 lines (101 loc) · 3.55 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<!-- <meta name="viewport" content="width=device-width"> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<link rel="stylesheet" type="text/css" href="/css/global.css">
<link href='http://fonts.googleapis.com/css?family=Alegreya:400italic,900italic,400,900' rel='stylesheet' type='text/css'>
<title>I'm Batman</title>
</head>
<body>
<div class="container main">
<header>
<div class="brand">
<h1>Batman</h1>
<ul>
<li class="crimefighting">Crimefighter</li>
<li class="philanthrophy">Philanthropist</li>
<li class="bat">Bat</li>
</ul>
</div>
<img src="/img/batman.jpg" alt="">
</header>
<section class="friends" id="friends">
<h2>Friends</h2>
<ul>
<li class="alfred">
<img src="/img/alfred.jpg">
<b>Alfred</b>
<i>butler</i>
</li>
<li class="selina">
<img src="/img/selina.jpg">
<b>Selina</b>
<i>cat</i>
</li>
<li class="gordon">
<img src="/img/gordon.jpg">
<b>Gordon</b>
<i>commish</i>
</li>
</ul>
<p class="readmore"><a href="http://www.dccomics.com/characters/batman">Read our comic →</a></p>
</section>
<section class="jl" id="jl">
<h2>Justice League</h2>
<div class="pics">
<a href="#"><img src="/img/superman.jpg" alt=""></a>
<a href="#"><img src="/img/wonderwoman.jpg" alt=""></a>
<a href="#"><img src="/img/flash.jpg" alt=""></a>
<a href="#"><img src="/img/greenlantern.jpg" alt=""></a>
<a href="#"><img src="/img/aquaman.jpg" alt=""></a>
</div>
<p class="readmore"><a href="http://www.dccomics.com/characters/justice-league">Learn more about it →</a></p>
</section>
<section class="crime" id="crime">
<h2>Enemies</h2>
<div class="pics">
<a href="#"><img src="/img/joker.jpg" alt=""></a>
<a href="#"><img src="/img/scarecrow.jpg" alt=""></a>
<a href="#"><img src="/img/bane.jpg" alt=""></a>
<a href="#"><img src="/img/ras.jpg" alt=""></a>
<a href="#"><img src="/img/harley.jpg" alt=""></a>
</div>
</section>
<section class="portrayers" id="crime">
<h2>Portrayers</h2>
<div class="pics">
<a href="#"><img src="/img/keaton.jpg" alt=""></a>
<a href="#"><img src="/img/kilmer.jpg" alt=""></a>
<a href="#"><img src="/img/clooney.jpg" alt=""></a>
<a href="#"><img src="/img/bale.jpg" alt=""></a>
<a href="#"><img src="/img/affleck.jpg" alt=""></a>
</div>
</section>
<section class="contact">
<h2>Report a crime</h2>
<form action="./">
<p>
<textarea name="message"></textarea>
</p>
<p>
<button class="btn">Submit</button>
</p>
</form>
</section>
</div>
<footer>
<div class="container">
<div class="copyright">
© 2014 Bruce Wayne<br>
<a href="mailto:bruce@wayneenterprises.com">bruce@wayneenterprises.com</a>
</div>
<nav>
<a href="#friends">Friends</a>
<a href="#jl">Justice League</a>
<a href="#crime">Crimefighting</a>
</nav>
</div>
</footer>
</body>
</html>