forked from bloominstituteoftechnology/Preprocessing-I
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (80 loc) · 2.48 KB
/
index.html
File metadata and controls
86 lines (80 loc) · 2.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>My Resume</title>
<link rel="stylesheet" href="css/index.css" />
<link
href="https://fonts.googleapis.com/css?family=Bahianita|Open+Sans+Condensed:300&display=swap"
rel="stylesheet"
/>
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<header>
<nav id="navbar">
<a href="#">Skills</a>
<a href="#">Experience</a>
<a href="#">Portfolio</a>
<a href="#">Contact</a>
</nav>
</header>
<div id="jack">
<img src="img/jack-harkness.jpg" />
<div class="about-jack">
<h1>
Captain Jack Harkness <br />
Time Agent
</h1>
</div>
</div>
<div class="about">
<p>
I am just as likely to take you on an adventure through time, as take
you dancing. I was born in the 51st century and have been the companion
of TWO Time Lords. Being killed by Daleks didn't slow me down, after
being ressurrected, a freak accident left me immortal.
</p>
</div>
<section class="main">
<div id="skills">
<h2>Skills</h2>
<ul>
<li>Traveling Through Time</li>
<li>Flirting</li>
<li>Running Fast</li>
<li>Identity Theft</li>
<li>Espionage</li>
<li>Master of Disguise</li>
</ul>
</div>
<div id="work">
<h2>Employment</h2>
<p>
I have lived thousands of years and stuck with one job, saving the
world. Well, except that couple hundred years I was a con man.
</p>
<p>
I was the first man to be signed up for the Time Agency, making me the
poster child of the Boeshane Peninsula. The Face of Boe, they called
me. This made me the first Time Agent.
</p>
<p>
While undercover, I learned a lot about the black market and became a
purveyor of rare items, as well as an auction afficianado.
</p>
<p>I also spent a few decades living as a priest.</p>
<p>
While waiting around the 21st century waiting for a friend to show up,
I became first a team member, and then the leader of The Torchwood
Three.
</p>
</div>
</section>
<footer>
<a href="#">captjack@timeagency.gov</a>
</footer>
</body>
</html>