forked from koalalu007/resume-maker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (56 loc) · 2.82 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume Template Maker</title>
<link rel="stylesheet" href="index.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,800;1,100;1,200;1,300;1,400;1,500&display=swap"
rel="stylesheet">
</head>
<body>
<div class="container">
<div id="resume-form" class="side">
<h1>Personal Information</h1>
<div class="profile-image-upload">
<label for="profile-image">Upload Profile Image</label>
<input id="profile-image" type="file" accept="image/*">
<button id="clear-image-button">Clear</button>
</div>
<input id="name" type="text" name="name" placeholder="Name">
<input id="email" type="email" name="email" placeholder="Email">
<input id="phone" type="text" name="phone" placeholder="Phone" inputmode="numeric">
<input id="address" type="text" name="address" placeholder="Address">
<h1>Summary</h1>
<textarea id="summary" name="summary" placeholder="Summary"></textarea>
<h1>Education</h1>
<input id="school" type="text" name="school" placeholder="School">
<input id="degree" type="text" name="degree" placeholder="Degree">
<input id="major" type="text" name="major" placeholder="Major">
<input id="graduation-date" type="text" name="graduation-date" placeholder="Graduation Date">
<h1>Work Experience</h1>
<input id="company" type="text" name="company" placeholder="Company">
<input id="title" type="text" name="title" placeholder="Title">
<input id="start-date" type="text" name="start-date" placeholder="Start Date">
<input id="end-date" type="text" name="end-date" placeholder="End Date">
<h1>Skills</h1>
<input id="skill-1" type="text" name="skill-1" placeholder="Skill 1">
<input id="skill-2" type="text" name="skill-2" placeholder="Skill 2">
<input id="skill-3" type="text" name="skill-3" placeholder="Skill 3">
<h1>References</h1>
<input id="reference-1" type="text" name="reference-1" placeholder="Reference 1">
<input id="reference-2" type="text" name="reference-2" placeholder="Reference 2">
<input id="reference-3" type="text" name="reference-3" placeholder="Reference 3">
<div class="download"><button id="download-button">Download PDF</button></div>
</div>
<div class="side">
<iframe src="pdfTamplate.html" width="100%" height="500"></iframe>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.9.2/html2pdf.bundle.js"></script>
<script src="index.js"></script>
</body>
</html>