-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
120 lines (91 loc) · 3.15 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<html>
<head>
<title> C.E.O.
</title>
<link rel="stylesheet" type="text/css" href="Navbar.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"/>
<style>
.head {
width: 100%;
position:absolute;
margin-top: 10%;
font-size: 50px;
color: white;
font-weight: bold;
}
.subhead {
width: 100%;
position:absolute;
margin-top: 21%;
color: white;
}
p {
padding-right: 90px;
padding-left: 10px;
float: left;
}
.vision {
margin-left: 10%;
font-size: 30px;
}
.headshot {
float: right;
}
.topfoot {
margin-top: 150px;
background-color:black;
opacity:.65;
padding: 30px;;
}
</style>
</head>
<body>
<!-- Nav Bar Build -->
<div class="container">
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="brand">Christopher Olson</div> <!-- Self closing -->
<ul class="nav">
<li class="active"><a href="index.html">Home</a></li>
<li> <a href="Contact.html"> Contact </a> </li>
<li> <a href="Work.html"> Work Experience </a></li>
<li> <a href="Academic.html"> Education </a> </li>
<li> <a href="Aboutme.html"> About Me </a> </li>
<li> <a href="resume.html"> Resume </a> </li>
</ul>
</div>
</div>
</div>
<!-- Background image builder -->
<h1 class="head" style="text-align:center;"> "Stay hungry, stay foolish" </h1>
<h3 class="subhead" style="text-align:center;"> - Steve Jobs </h3>
<img src="https://images.pexels.com/photos/128458/pexels-photo-128458.jpeg?w=1260&h=750&auto=compress&cs=tinysrgb" style="width: 100%; height: 60%;">
<div class="container">
<div class="row" style="margin-top: 10%; margin-bottom: 20px;">
<div class="col-md-6">
<img class="headshot" src="http://i67.tinypic.com/opmq8y.png" style="width: 250px; height: 350px; margin-left: 30%;" />
</div>
<div class="col-md-6">
<p style="font-size: 20px;">
<b class="vision"> Mission Statement </b> <br>
<br>College has taught me two very important lessons. One, you never stop learning and two, life is a maze not a straight line.
My mission is to continue my pursuit of Knowledge and follow what I believe, no matter how crazy it might seem to other people.
Hard-work, persistence, and believing in myself will open doors of opportunity in both business and personal life that I am working so desperately hard to make the most of.
</p>
</div>
</div>
</div>
<footer class="topfoot">
<p style="Width: 100%;">
<a href="https://www.linkedin.com/in/christopher-olson-b4003a100/" style="margin-left: 47%;"> <img src="https://pbs.twimg.com/profile_images/614583061448036352/CBpFkPaz_400x400.png" style="width:42px;height:42px;"></a>
</p>
<div class="bottomfoot">
<div class="row">
<div class="col-md-12" style="color: white; text-align: center;">@ Copyright Christopher Evan Olson 2017.</div>
</div>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrap.cdn.com/3.2.0/js/bootstrap.min.js"></script>
</body>
</html>