generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
342 lines (335 loc) · 15.7 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/hover.css/2.3.1/css/hover-min.css"
/>
<link rel="stylesheet" href="assets/css/style.css" />
<title>Rosie</title>
</head>
<body>
<header>
<div class="row no-gutters">
<a href="index.html" class="col-md-4 logo"></a>
<div class="col-md-8">
<div class="row no-gutters bg-color-name-title">
<div class="col heading">
<h1 class="name">Rosie Odenkirk</h1>
<h2 class="title">Fullstack Developer</h2>
</div>
</div>
<div class="row no-gutters">
<div class="col">
<ul id="nav" class="list-inline menucontainer">
<li
class="col-xs-6 col-sm-2 list-inline-item ui-menu-color-home menuitem"
>
<a
href="index.html"
class="hvr-sweep-to-bottom"
>
<i
class="fa fa-home"
aria-hidden="true"
></i>
<span>Home</span>
</a>
</li>
<li
class="col-xs-6 col-sm-2 list-inline-item ui-menu-color-resume menuitem"
>
<a
href="resume.html"
class="hvr-sweep-to-bottom"
>
<i
class="fa fa-graduation-cap"
aria-hidden="true"
></i>
<span>Resume</span>
</a>
</li>
<li
class="col-xs-6 col-sm-2 list-inline-item ui-menu-color-contact menuitem"
>
<a
href="contact.html"
class="hvr-sweep-to-bottom"
>
<i
class="fa fa-comment-o"
aria-hidden="true"
></i>
<span>Contact</span>
</a>
</li>
<li
class="col-xs-6 col-sm-2 list-inline-item ui-menu-color-interests menuitem"
>
<a
href="interests.html"
class="hvr-sweep-to-bottom"
>
<i
class="fa fa-users"
aria-hidden="true"
></i>
<span>Interests</span>
</a>
</li>
<li
class="col-xs-6 col-sm-2 list-inline-item ui-menu-color-github menuitem"
>
<a
href="github.html"
class="hvr-sweep-to-bottom"
>
<i
class="fa fa-github"
aria-hidden="true"
></i>
<span>GitHub</span>
</a>
</li>
<li
class="col-xs-6 col-sm-2 list-inline-item ui-menu-color-download menuitem"
>
<a
href="assets/cv/sample-cv.pdf"
target="_blank"
class="hvr-sweep-to-bottom"
>
<i
class="fa fa-download"
aria-hidden="true"
></i>
<span>Download</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</header>
<section class="container-fluid">
<div class="row">
<div class="col-md-4 bg-color-personal-info section-column">
<div class="row">
<div class="col-12">
<h3 class="section-heading uppercase">
Personal Info
</h3>
</div>
</div>
<div class="personal-info-item">
<div class="key">
<p class="uppercase">Name:</p>
</div>
<div class="value">
<p>Rosie Odenkirk</p>
</div>
</div>
<div class="personal-info-item">
<div class="key">
<p class="uppercase">Address:</p>
</div>
<div class="value">
<p>17 Riverdale, Catskills, NY USA</p>
</div>
</div>
<div class="personal-info-item">
<div class="key">
<p class="uppercase">Phone:</p>
</div>
<div class="value">
<p>555-123-6543</p>
</div>
</div>
<div class="personal-info-item">
<div class="key">
<p class="uppercase">Email:</p>
</div>
<div class="value">
<p>[email protected]</p>
</div>
</div>
</div>
<div class="col-md-8 bg-color-three-reasons section-column">
<div class="row">
<div class="col">
<h3 class="section-heading uppercase">About Me</h3>
</div>
</div>
<div class="row">
<div
class="col-10 offset-1 offset-sm-0 col-sm-4 col-md-6"
>
<div class="row">
<div class="col-2">
<i
class="three-reasons-icon fa fa-question"
aria-hidden="true"
></i>
</div>
<div class="col-10">
<h4 class="three-reasons-heading uppercase">
What do I do?
</h4>
<p>
I'm a skilled Full Stack Developer with
a wealth of diverse life and technical
experience that I bring to every
project.
</p>
</div>
</div>
</div>
<div
class="col-10 offset-1 offset-sm-0 col-sm-4 col-md-6"
>
<div class="row">
<div class="col-2">
<i
class="three-reasons-icon fa fa-thumbs-up"
aria-hidden="true"
></i>
</div>
<div class="col-10">
<h4 class="three-reasons-heading uppercase">
How do I do it?
</h4>
<p>
I follow form as well as function. I
know that the aesthetics of effective
design combined with application speed,
security and reliability combine to
create a great user experience.
</p>
</div>
</div>
</div>
<div
class="col-10 offset-1 offset-sm-0 col-sm-4 col-md-6"
>
<div class="row">
<div class="col-2">
<i
class="three-reasons-icon fa fa-bolt"
aria-hidden="true"
></i>
</div>
<div class="col-10">
<h4 class="three-reasons-heading uppercase">
Why hire me?
</h4>
<p>
I work quickly and effectively in
getting things built and working across
the stack. I'm an excellent communicator
who thrives in bright and enthusiastic
teams and I'm also a self starter when
working solo.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<footer class="container-fluid">
<div class="row" id="footer-details">
<div class="col-sm-4">
<h5 class="uppercase general-sub">About</h5>
<p class="inline-block">
Full Stack Web Developer. Skilled in everything from
HTML to Heroku. The capacity for structural and design
thinking.
</p>
</div>
<div class="col-sm-4">
<h5 class="uppercase general-sub">Download</h5>
<p class="inline-block">
Need a printable version of my CV? Download it here.
<a
href="assets/cv/sample-cv.pdf"
target="_blank"
class="cv-pdf"
>
<i class="fa fa-download" aria-hidden="true"></i>
<span class="sr-only">Download link</span>
</a>
</p>
</div>
<div class="col-sm-4">
<h5 class="uppercase general-sub">Social</h5>
<ul class="list-inline social-links">
<li class="list-inline-item">
<a href="#" target="_blank">
<i
class="fa fa-facebook"
aria-hidden="true"
></i>
<span class="sr-only">Facebook</span>
</a>
</li>
<li class="list-inline-item">
<a href="#" target="_blank">
<i class="fa fa-twitter" aria-hidden="true"></i>
<span class="sr-only">Twitter</span>
</a>
</li>
<li class="list-inline-item">
<a href="#" target="_blank">
<i
class="fa fa-linkedin"
aria-hidden="true"
></i>
<span class="sr-only">Linkedin</span>
</a>
</li>
<li class="list-inline-item">
<a href="#" target="_blank">
<i
class="fa fa-pinterest"
aria-hidden="true"
></i>
<span class="sr-only">Pinterest</span>
</a>
</li>
<li class="list-inline-item">
<a href="#" target="_blank">
<i
class="fa fa-instagram"
aria-hidden="true"
></i>
<span class="sr-only">Instagram</span>
</a>
</li>
<li class="list-inline-item">
<a href="#" target="_blank">
<i class="fa fa-youtube" aria-hidden="true"></i>
<span class="sr-only">Youtube</span>
</a>
</li>
</ul>
</div>
</div>
</footer>
<script
src="https://kit.fontawesome.com/554b7b0344.js"
crossorigin="anonymous"
></script>
</body>
</html>