-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (65 loc) · 2.41 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width" />
<!-- Always force latest IE rendering engine or request Chrome Frame -->
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<!-- Use title if it's in the page YAML frontmatter -->
<title>John Hossler</title>
<!-- We use some fonts I got from the interbutt -->
<link href="http://fonts.googleapis.com/css?family=Lekton" rel="stylesheet" type="text/css">
<link href="http://fonts.googleapis.com/css?family=Molengo" rel="stylesheet" type="text/css">
<link href="/stylesheets/normalize.css" rel="stylesheet" type="text/css" /><link href="/stylesheets/all.css" rel="stylesheet" type="text/css" />
<script src="/javascripts/all.js" type="text/javascript"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-79137155-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body class="index">
<header>
<h1>John Hossler</h1>
<nav>
<ul>
<li><a href="/">Home</a></li>
<!-- <li><a href="/projects">Projects</a></li> -->
<!-- <li><a href="/personal">Personal</a></li> -->
<li><a href="/contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<!-- My Bio -->
<article>
<div class="stripe">
<h2>About Me</h2>
<section class="with-fig">
<figure>
<img src="/images/me.jpg" alt="A picture of me.">
</figure>
<div class="desc">
<h3>Bio</h3>
<p>My name is John Hossler, and I am a co-op software developer at Adtran in Huntsville and
student at the University of Alabama.</p>
<p>This site is still under development, but I plan on updating this with projects I enjoy
working on.</p>
<p>If you are interested in finding out more about me,
<a href="contact/resume-1/JohnHosslerResume.pdf">
Check out my resume</a>
and
<a href="/contact">drop me a line if you'd like to chat.</a>
</p>
</div>
</section>
</div>
</article>
</main>
<footer>
</footer>
</body>
</html>