-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (58 loc) · 2.24 KB
/
index.html
File metadata and controls
60 lines (58 loc) · 2.24 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CLN Portfolio</title>
<link rel='shortcut icon' href='favicon.ico' type='image/x-icon'>
<link rel="image_src" href="images/topBanner.jpg">
<link rel="image_src" href="images/chicagoSkyline.jpg">
<meta name="description" content="My name is Cody Nicholson and this is my résumé webpage where you can find all the details about my skills, experience, and background">
<meta name="viewport" content="width=device-width,initial-scale=1">
<script src="js/jquery-2.1.1.min.js"></script>
<!-- Load the page styles -->
<link href="css/resumeImagePopUp.css" rel="stylesheet">
<link href="css/resumeStyle.css" rel="stylesheet">
<!-- Load google map api -->
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBw_4glCNdRzSburBMULd57Mo2l7_C7RuE&libraries=places"></script>
</head>
<body>
<div id="main">
<div id="header" class="center-content clear-fix">
<ul id="topContacts" class="flex-box"></ul>
</div>
<div style="clear: both;"></div>
<div id="workExperience" class="gray">
<h2 onclick="">Work Experience</h2>
</div>
<div id="projects" class="white clickableImg">
<h2>Projects</h2>
</div>
<div id="education" class="gray">
<h2>Education</h2>
</div>
<div id="honors" class="white">
<h2>Honors and Awards</h2>
</div>
<div id="comService" class="gray clickableImg">
<h2>Community Service</h2>
</div>
<div id="mapDiv" class="white">
<h2>Where I've Lived and Worked</h2>
</div>
<div id="lets-connect" class="dark-gray">
<h2 class="orange lets_connect_text center-text">Let's Connect</h2>
<ul id="footerContacts" class="flex-box">
</ul>
</div>
</div>
<!-- The Image Modal -->
<div id="myModal" class="modal" onclick="document.getElementById('myModal').style.display='none'">
<span class="close" onclick="document.getElementById('myModal').style.display='none'">×</span>
<img src="" alt="" class="modal-content" style="width: 100%">
<div id="caption"></div>
</div>
<script src="js/htmlElementHelper.js"></script>
<script src="js/resumeBuilder.js"></script>
<script src="js/resumeFunctions.js"></script>
</body>
</html>