-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (81 loc) · 4.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width initial-scale=1 shrink-to-fit=no">
<link rel="shortcut icon" href="assets/images/icons/favicons/cube.ico">
<title>Dalton Ricker</title>
<!-- Link to Reset CSS -->
<link href="assets/css/reset.css" type="text/css" rel="stylesheet">
<!--Link to CSS Stylesheet-->
<link href="assets/css/style.css" type="text/css" rel="stylesheet">
<!-- Link to Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css"
integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous">
</head>
<body>
<header class="header">
<section class="nav-bar">
<div id="nav-title">
<h1 id="portfolio-name">Dalton Ricker</h1>
</div>
<div id="nav">
<ul>
<li><a href="index.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</section>
</header>
<div class="wrapper">
<div class="content">
<section id="about-me">
<h1 id="page-name">About Me</h1>
<hr/>
<div class="profile">
<img id="profile-picture" src="assets/images/ProfilePicture.jpg" alt="My Profile Picture"
title="Me after skydiving from 14,000 feet in Arizona"/>
<p class="tab">Born and raised in Atlanta, Georgia I attended St. Pius X Catholic High School and then
chose to study Engineering in college, with my two top choices being Georgia Institute of
Technology (my parents are Alumni) or the United States Merchant Marine Academy. As luck would have
it…
I chose the latter. After spending four years at the academy, I graduated with a Bachelor's of
Science in
Marine Engineering Systems, and a commission in the Naval Reserve.</p>
<p class="tab">Following graduation I began working for the
U.S. Navy's Military Sealift Command, a government company whose mission is to support the U.S.
Navy vessels throughout the world, we deployed with all their strike groups and assist them by
delivering
their food, fuel, ammunition, and mail via Underway Replenishments. I spent over six years working
as an
engineer on seven different ships in the fleet. On a ship underway you don't have the luxury of
calling for a repairman if anything goes wrong, that is what the engineers are there for. As an
engineer I had to do it all…
or learn quickly, which is what I love to do… learn something new, and then become the best
possible at it.</p>
<p class="tab">After spending so much time away from land, I decided that a change was in order and that
I wanted to get a job back on dry land, and began to explore another big passion of mine…
technology. I have always loved computers and everything tech related, and working as a web
developer gives me the opportunity to explore that passion on a daily basis. I am able to employ my
inventiveness, creativity, logic, and thirst for learning constantly as I work and it gives me great
satisfaction.</p>
<p class="tab">My other passions include motorcycling (I currently own a 2013 Ninja 300 and it is my
daily vehicle), Rubik's cubes (I have quite a few of them to say the least ranging from 2x2x2s
up to
a 15x15x15 as well as all sizes of -minxs), reading, and meditation.</p>
</div>
</section>
<div class="spacer"></div>
</div>
</div>
<footer class="footer">
<p id="footer"> Copyright © 2018</p>
</footer>
<!-- Link to jQuery -->
<script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous"></script>
<!-- LInk to JavaScript -->
<script src="assets/javascript/app.js"></script>
</body>
</html>