-
Notifications
You must be signed in to change notification settings - Fork 30
/
index.html
106 lines (87 loc) · 3.11 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>I'm Jim | Starfleet officer</title>
<!-- Boostrap -->
<link rel="stylesheet" href="bootstrap.min.css">
<!-- Boostrap's example "narrow-jumbotron" -->
<link rel="stylesheet" href="narrow-jumbotron.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="header clearfix">
<nav>
<h3 class="text-muted">James Tiberius Kirk</h3>
</nav>
</div>
<div class="jumbotron">
<div class="row">
<div class="col-6">
<img src="kirk.jpg" class="img-thumbnail">
</div>
<div class="col-6 personal">
<h3>Hi, there! I'm Jim</h3>
<b>Starfleet officer @ Starfleet</b><br>
James Tiberius "Jim" Kirk was a male Human Starfleet officer in the 23rd century. He was arguably one of the most famous and highly decorated starship captains in the history of Starfleet. As the commanding officer of the Constitution-class starships USS Enterprise and USS Enterprise-A, Kirk served United Federation of Planets interests as an explorer, soldier, time-traveler, and diplomat.
</div>
</div>
<br>
</div>
<div class="row">
<h4>Skills</h4>
</div>
<div class="row">
<div class="col-lg-4">
<b>~</b> Leadership
</div>
<div class="col-lg-4">
<b>~</b> Leadership
</div>
<div class="col-lg-4">
<b>~</b> Human Language
</div>
<div class="col-lg-4">
<b>~</b> Borg Language
</div>
<div class="col-lg-4">
<b>~</b> Valcan Language
</div>
<div class="col-lg-4">
<b>~</b> Sleeping
</div>
</div><br>
<div class="row">
<h4>Courses</h4>
</div>
<div class="card">
<ul class="list-group list-group-flush">
<li class="list-group-item">
<a href="kobayashimaru">
<b>Δ How to survive in Kobayashi Maru mission</b> @ Starfleet Academy
</a>
</li>
<li class="list-group-item">
<a href="adv-nav">
<b>Δ Advanced Navigation</b> @ Starfleet Academy
</a>
</li>
<li class="list-group-item">
<a href="warp-design">
<b>Δ Basic Warp Design</b> @ Starfleet Academy
</a>
</li>
<li class="list-group-item">
<a href="klingon-phys">
<b>Δ Klingon Physiology</b> @ Valcan State Institute of Technology
</a>
</li>
</ul>
</div>
<footer class="footer">
<p>© James Tiberius Kirk 2017</p>
</footer>
</div>
</body>
</html>