-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (47 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Editable Resume Builder</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="form-container" class="form-container">
<form id="resume-form">
<h2>Create Your Resume</h2>
<div>
<label for="name">Full Name</label>
<input type="text" id="name" placeholder="Name" required>
</div>
<div>
<label for="email">Email</label>
<input type="email" id="email" placeholder="ali@example.com" required>
</div>
<div id="education-section">
<h3>Education</h3>
<input type="text" placeholder="Degree" required>
<input type="text" placeholder="Institution" required>
<input type="text" placeholder="Graduation Year" required>
</div>
<button type="button" id="add-education">Add Education</button>
<div id="experience-section">
<h3>Work Experience</h3>
<input type="text" placeholder="Job Title" required>
<input type="text" placeholder="Company" required>
<input type="text" placeholder="Duration" required>
</div>
<button type="button" id="add-experience">Add Experience</button>
<div>
<label for="skills">Skills (comma separated)</label>
<input type="text" id="skills" placeholder="HTML, CSS, JavaScript" required>
</div>
<button type="button" id="generate-resume">Generate Resume</button>
</form>
</div>
<div id="resume-display" class="resume-display">
<div id="resume-content"></div>
</div>
<script src="script.js"></script>
</body>
</html>