-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.html
75 lines (74 loc) · 2.57 KB
/
resume.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
<!DOCTYPE html>
<html>
<head>
<title>Resume | Greg Garabedian</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:400,400italic,300,700|Muli">
<link rel="stylesheet" href="dist/css/app.min.css">
<script async>
(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-20422227-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<header id="nav">
<div class="row">
<div class="column">
<nav>
<ul class="menu simple">
<li><a href="portfolio.html" title="Portfolio">portfolio</a></li>
<li id="logo"><a href="index.html" title="Home">g</a></li>
<li><a href="resume.html" title="Resume">resume</a></li>
</ul>
</nav>
</div>
</div>
</header>
<div class="row">
<div class="large-6 large-centered medium-8 medium-centered small-12 columns">
<main id="content" class="resume">
<section>
<header id="title">
<h1>Resume.</h1>
</header>
<section id="summary">
</section>
<section id="skills" class="item">
<header class="present">
<h4>Skills</h4>
</header>
</section>
<section id="work" class="item"></section>
<section id="education" class="item">
<header>
<h4>Education</h4>
</header>
</section>
</section>
</main>
</div>
</div>
<footer>
<div class="row">
<div class="column contact">
<a href="https://www.linkedin.com/in/garabedium" target="_blank" title="Gregory Garabedian on LinkedIn">
<img src="assets/images/logo-icon-linkedin.png"
srcset="assets/images/logo-icon-linkedin.png 1x, assets/images/[email protected] 2x"
alt="Gregory Garabedian on LinkedIn"></a>
<a href="https://www.github.com/garabedium" target="_blank" title="Garabedium on Github">
<img src="assets/images/logo-icon-github.png"
srcset="assets/images/logo-icon-github.png 1x, assets/images/[email protected] 2x"
alt="Github"></a>
</div>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script src="dist/js/helper.min.js"></script>
<script src="dist/js/app.min.js"></script>
</body>
</html>