-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (39 loc) · 1.74 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
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume Builder</title>
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="styles/resume-content.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<div class="container">
<aside class="sidebar">
<!-- <button id="drawer-button">Toggle</button> -->
<h2>Sections</h2>
<ul id="sections">
<li draggable="true" data-section="header">Profile</li>
<li draggable="true" data-section="contact">Contact Info</li>
<li draggable="true" data-section="experience">Experience</li>
<li draggable="true" data-section="education">Education</li>
<li draggable="true" data-section="skills">Skills</li>
<li draggable="true" data-section="summary">Summary</li>
</ul>
<button id="saveButton">Save</button>
<button id="downloadPdfButton">Download PDF</button>
</aside>
<main class="preview">
<div id="resume-actions">
</div>
<div id="resume-content"></div>
</main>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.10.2/html2pdf.bundle.min.js"
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="dist/script.js" type="module"></script>
</body>
</html>