-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1022 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FabFour Resume Parser</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Welcome to FabFour Resume Parser</h1>
<p>Simplify your job application process with automated resume parsing.</p>
</header>
<section id="resume-form">
<h2>Upload Your Resume</h2>
<label for="resume-upload" class="custom-upload-button">Choose Resume</label>
<input type="file" id="resume-upload" accept=".txt,.pdf">
<button id="parse-button">Parse</button>
</section>
<section id="parsed-info">
<h2>Parsed Information</h2>
<div id="name"></div>
<div id="email"></div>
<div id="phone"></div>
<div id="gender"></div>
</section>
<footer>
<p>© 2023 FabFour Resume Parser</p>
</footer>
<script src="script.js"></script>
</body>
</html>