forked from udacity/frontend-nanodegree-resume
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (37 loc) · 1.22 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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Resume</title>
<link href="css/style.css" rel="stylesheet" type="text/css">
<script src="js/jQuery.js"></script>
<script src="js/helper.js"></script>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?libraries=places"></script>
<meta name="viewport" content="width=device-width">
</head>
<body unresolved>
<div id="main">
<div id="header" class="content-area center-content clearfix">
<ul id="topContacts" class="contacts flex-box"></ul>
</div>
<div style='clear: both;'></div>
<div id="workExperience" class="content-area gray">
<h2>Work Experience</h2>
</div>
<div id="projects" class="content-area">
<h2>Projects</h2>
</div>
<div id="education" class="content-area gray">
<h2>Education</h2>
</div>
<div id="mapDiv" class="content-area">
<h2>Where I've Lived and Worked</h2>
</div>
<div id="letsConnect" class="content-area dark-gray">
<h2 id="letsConnectHeader" class="orange center-text">Let's Connect</h2>
<ul id="footerContacts" class="contacts flex-box">
</ul>
</div>
</div>
<script src="js/resumeBuilder.js"></script>
</body>
</html>