forked from mnjul/html-resume
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
82 lines (75 loc) · 2.13 KB
/
resume.html
File metadata and controls
82 lines (75 loc) · 2.13 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
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link href="https://fonts.googleapis.com/css?family=Asap|Open+Sans" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="resume.json"></script>
<script type="text/javascript" src="script.js"></script>
</head>
<body lang="en">
<section id="main">
<div id="head">
<div id="hLeft">
<h1 id="name"></h1>
<h2 id="title"></h2>
</div>
<div class="vertical"></div>
<span id="hRight">
</span>
</div>
<section class="bod">
<section class="main-block" id="work">
<h2>Experience</h2>
<hr>
</section>
<section class="main-block" id="volunteer">
<h2>Volunteer Work</h2>
<hr>
</section>
<section class="main-block" id="education">
<h2>Education</h2>
<hr>
</section>
<section class="main-block">
<h2>Skills</h2>
<hr>
<section class="blocks" id="skills">
<div class="details" id="skillBox">
<div class="skill">
<h3>Proficient</h3>
<ul id="proficient">
</ul>
</div>
<div class="skill">
<h3>Familiar</h3>
<ul id="familiar">
</ul>
</div>
<div class="skill">
<h3>Tools</h3>
<ul id="tools">
</ul>
</div>
</div>
</section>
</section>
<section class="main-block">
<h2>Awards & Honors</h2>
<hr>
<div class="details">
<ul id="awards"></ul>
</div>
</section>
<section class="main-block">
<h2>Publications</h2>
<hr>
<div class="details">
<ul id="strengths"></ul>
</div>
</section>
</section>
</section>
</body>
</html>