-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (64 loc) · 1.91 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<title>Batman's resume</title>
<style>
a:link {color:yellow;}
a:visited {color:yellow;}
a:hover {color:red;}
a:active {color:yellow;}
</style>
</head>
<body>
<div id="header">
<h1>Batman</h1>
</div>
<div id="contact">
<h2>Signal me</h2>
<p><a href="mailto:[email protected]?subject=You're%20Hired!&body=Congratulations%20Batman%0AYou're%20great">[email protected]</a></p>
<p> <a href="http://www.linkedin.com/pub/batman-bruce-wayne/31/751/432">LinkedIn</a> | <a href="https://twitter.com/TheBatman">Twitter</a></p>
</div>
<div id="content">
<h2>Professional Experience</h2>
<h3>The Batman</h3>
<p>May 1990-Present</p>
<ul>
<li>Fought crime as a vigilante</li>
<li>Never killed a criminal</li>
<li>Had really cool gadgets</li>
</ul>
<h3>CEO at Wayne Industries</h3>
<p>March 1950-Present</p>
<ul>
<li>Made multi-billion dollar corporation (inherited)</li>
<li>Successfully expanded business internationally</li>
<li>Made some enemies</li>
</ul>
<h3>Server at Ice-Cream Shop</h3>
<p>January 1901 - March 1950</p>
<ul>
<li>Served ice cream</li>
<li>Secretly ate ingredients</li>
<li>Made children happy</li>
</ul>
<hr>
<h2>Education</h2>
<h3>Vigilante Academy, Certificate | 1990</h3>
<ul>
<li>Learned martial arts, and how to never get caught (wear a mask)</li>
</ul>
<h3>Oxford University, MBA | 1949</h3>
<ul>
<li>Learned how to manage a multibillion dollar business (and inheritance laws)</li>
</ul>
<hr>
<h2>Interests</h2>
<ul>
<li>Fighting crime</li>
<li>Using one-liners on criminal masterminds</li>
<li>Driving the batmobile</li>
</ul>
</div>
<div id="footer">123 Batman Street | Gotham City | New York</div>
</body>