-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathresume_analyzer-page.html
More file actions
30 lines (22 loc) · 911 Bytes
/
Copy pathresume_analyzer-page.html
File metadata and controls
30 lines (22 loc) · 911 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume Analyzer</title>
<link rel="stylesheet" href="styles/styles.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/2.11.338/pdf.min.js"></script>
</head>
<body>
<h1 class="analysis">Resume Analyzer</h1>
<p class="analysis-para">Al-powered resume analysis and feedback to help you stand out in your job search.</p>
<div class="form-sec">
<input type="file" id="myFileInput" class="file-uploader" accept=".pdf">
<button class="btn" onclick="handleUpload()">Analyze</button>
</div>
<p class="analysis-para">Review about your Resume</p>
<div class="analysis-subpara"></div>
<script src="config.js"></script>
<script src="scripts/resume_analyzer_script.js"></script>
</body>
</html>