-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (70 loc) · 3.25 KB
/
Copy pathindex.html
File metadata and controls
70 lines (70 loc) · 3.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CV Builder</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<section class="form-section">
<h2>CV Details</h2>
<form id="cv-form">
<input type="text" id="name" placeholder="Full Name" required maxlength="40">
<input type="text" id="father" placeholder="Father's Name" maxlength="40">
<input type="text" id="address" placeholder="Address" maxlength="60">
<input type="text" id="city" placeholder="City" maxlength="30">
<input type="text" id="number" placeholder="Phone Number" maxlength="20">
<input type="text" id="education" placeholder="Education" maxlength="60">
<input type="text" id="work" placeholder="Work" maxlength="60">
<input type="text" id="skills" placeholder="Skills (comma separated)" maxlength="80">
<textarea id="experience" placeholder="Experience" maxlength="300"></textarea>
<textarea id="other" placeholder="Other Details" maxlength="200"></textarea>
</form>
<button id="export-btn">Export as PDF</button>
</section>
<section class="preview-section">
<h2>Live Preview</h2>
<div id="cv-preview">
<div class="cv-header">
<h1 id="preview-name"></h1>
<div class="cv-contact">
<span id="preview-father"></span>
<span id="preview-address"></span>
<span id="preview-city"></span>
<span id="preview-number"></span>
</div>
</div>
<hr class="cv-divider">
<div class="cv-body">
<div class="cv-section" id="section-education">
<h3 id="heading-education">Education</h3>
<p id="preview-education"></p>
</div>
<div class="cv-section" id="section-work">
<h3 id="heading-work">Work</h3>
<p id="preview-work"></p>
</div>
<div class="cv-section" id="section-skills">
<h3 id="heading-skills">Skills</h3>
<ul id="preview-skills"></ul>
</div>
<div class="cv-section" id="section-experience">
<h3 id="heading-experience">Experience</h3>
<p id="preview-experience"></p>
</div>
<div class="cv-section" id="section-other">
<h3 id="heading-other">Other Details</h3>
<p id="preview-other"></p>
</div>
</div>
</div>
</section>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2pdf.js/0.10.1/html2pdf.bundle.min.js"></script>
<script src="script.js"></script>
</body>
</html>
</body>
</html>