-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterview.html
More file actions
38 lines (37 loc) · 1.75 KB
/
Copy pathinterview.html
File metadata and controls
38 lines (37 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interview Preparation</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Interview Preparation</h1>
<label for="interviewType">Choose the type of interview:</label>
<label for="interviewType">Choose the job title:</label>
<select id="interviewType">
<option value="Data Scientist">Data Scientist</option>
<option value="Software Developer">Software Developer</option>
<option value="Information Security Analyst">Information Security Analyst</option>
<option value="Computer Systems Analyst">Computer Systems Analyst</option>
<option value="Web Developer">Web Developer</option>
<option value="Sales Engineer">Sales Engineer</option>
<option value="Information Technology Manager">Information Technology Manager</option>
<option value="Computer Research Scientist">Computer Research Scientist</option>
<option value="Network and Systems Administrator">Network and Systems Administrator</option>
<option value="Computer Support Specialists">Computer Support Specialists</option>
</select>
<button id="startButton">Start Interview</button>
<div id="questionArea" style="display: none;">
<p id="question"></p>
<textarea id="answer" rows="4" cols="50" placeholder="Your answer..."></textarea>
<button id="nextButton">Next Question</button>
</div>
<div id="resultArea" style="display: none;">
<h2>Your score: <span id="score"></span>/10</h2>
</div>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="app4.js"></script>
</body>
</html>