-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuildresume.html
More file actions
36 lines (28 loc) · 1.3 KB
/
buildresume.html
File metadata and controls
36 lines (28 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume Form</title>
<link rel="stylesheet" href="./CSS/form.css">
</head>
<body>
<div class="form-container">
<form id="resumeForm" class="resume-form">
<h2>Create Your Resume</h2>
<label for="name">Name</label>
<input type="text" id="name" name="name" placeholder="Enter your name" required>
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="Enter your email" required>
<label for="education">Education</label>
<input type="text" id="education" name="education" placeholder="Enter your education details" required>
<label for="work-experience">Work Experience</label>
<input type="text" id="work-experience" name="workExperience" placeholder="Enter your work experience" required>
<label for="skills">Skills</label>
<input type="text" id="skills" name="skills" placeholder="Enter your skills (comma-separated)" required>
<button type="submit">Generate Resume</button>
</form>
</div>
<script src="./Script/form.js"></script>
</body>
</html>