-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
73 lines (64 loc) · 2.96 KB
/
about.html
File metadata and controls
73 lines (64 loc) · 2.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Cory Christensen - About Me</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="http://fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/skeleton.css">
<link rel="stylesheet" href="css/styles.css">
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<header>
<div class="container">
<div class="row">
<div class="twelve columns">
<nav>
<ul>
<li><button><a href="index.html">Home</a></button></li>
<li><button><a href="contact.html">Contact</a></button></li>
</ul>
</nav>
</div>
</div>
</header>
<section class="about">
<div class="container">
<div class="row">
<div class="twelve columns">
<h3>About Me</h3>
</div>
</div><!--end of .row-->
<div class="row bottom">
<div class="two-thirds column">
<p>I has been a puzzle solver since birth. From Sudoku to Rubik's Cube, you can consistently find me focused on how to solve a problem.
Ever since being introduced to programming with R back in 2013, I have viewed coding and web development to be some of the most exciting ways to solve problems.</p>
<p>Beyond programming, you can often find me “off the grid” — backpacking, hiking, and traveling with my wife, Melanie. I also loves spending time jamming on the piano whether at home or in various jazz performances in the Cache Valley.</p>
</div>
<div class="one-third column">
<h4>Education</h4>
<ul>
<li>B.S. Statistics, Utah State University</li>
</ul>
<h4>Recent Positions</h4>
<ul>
<li>Web Developer - <a href="http://atomicjolt.com">Atomic Jolt</a></li>
<li>Director - <a href="http://hackustate.org">HackUState 2016</a></li>
</ul>
</div>
</div><!--end of .row-->
</div><!--end of .container-->
</section>