-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
executable file
·87 lines (80 loc) · 4.52 KB
/
about.html
File metadata and controls
executable file
·87 lines (80 loc) · 4.52 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
87
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Joe Reitman</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css'>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="font-awesome-4.6.3/css/font-awesome.min.css">
</head>
<body>
<div id="fb-root"></div>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/index.html"><b class="text-primary">Joe Reitman</b></a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li><a href="/about.html">About Me</a></li>
<li><a href="/projects.html">Projects</a></li>
<li><a href="/education.html">Education</a></li>
<li><a href="/contact.html">Contact</a></li>
</ul>
<ul class="nav navbar-nav pull-right">
<li>
<div class="navbar-brand"><a href="https://www.facebook.com/joe.reitman.9"><i class="fa fa-facebook" aria-hidden="true"></i></a></div>
</li>
<li>
<div class="navbar-brand">
<a href="https://www.linkedin.com/pub/joe-reitman/16/63b/9a9">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
</div>
</li>
<li>
<div class="navbar-brand">
<a href="http://codepen.io/reitmanj/">
<i class="fa fa-codepen" aria-hidden="true"></i>
</a>
</div>
</li>
<li>
<div class="navbar-brand">
<a href="https://medium.com/@joereitman/">
<i class="fa fa-medium" aria-hidden="true"></i>
</a>
</div>
</li>
</ul>
</div>
</div>
</nav>
<div class="container" id="about-me">
<div class="row">
<div class="col-md-8 col-sm-12 col-xs-12">
<h3 class="top-row">About Me</h3>
<p class="lead">I enjoyed a 21 year career with the U.S. Navy as an Electronics Technician. Some of my most memorable experiences were traveling to foreign ports and residing outside of the country. As a technician I enjoyed fixing things. Prior to my
military service I had a number of odd jobs such as auto mechanic, day laborer and electrician. My interest in electronics and a desire to travel led me to the U.S. Navy. After my career with the Navy I became a landlord and developed
a passion for DIY projects. My first investment was a 22-unit apartment building. Having done many of the remodeling projects in the building I decided it was better to pay someone else to manage and maintain it. Now I spend a majority
of my time on my other passion - computer programming. I'm a life long learner and enjoy learning about new technology.</p>
</div>
<div class="col-md-4 col-sm-12 col-xs-12">
<h3 class="top-row" style="text-align:center;">Old School Programming</h3>
<img src="http://www.classiccmp.org/hp/UYK-20/uyk%20panel.jpg" class="img-responsive img-circle center-block" alt="AN/UYK-20 front panel" style="width:300px;height:300px;"></img>
<br>
<p class="img">AN/UYK-20. My first programming experience was entering machine code 16 bits at a time.</p>
</div>
</div>
</div>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js'></script>
<!--<script src='js/scripts.js'></script>-->
</body>
</html>