-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterview2.html
More file actions
59 lines (56 loc) · 2.46 KB
/
Copy pathinterview2.html
File metadata and controls
59 lines (56 loc) · 2.46 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interview Questions</title>
<link rel="stylesheet" href="style.css">
<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>
</head>
<body>
<form id="app-cover">
<div id="select-box">
<input type="checkbox" id="options-view-button">
<div id="select-button" class="brd">
<div id="selected-value">
<span>Select a job title</span>
</div>
<div id="chevrons">
<i class="fas fa-chevron-up"></i>
<i class="fas fa-chevron-down"></i>
</div>
</div>
<div id="options">
<div class="option">
<input class="s-c top" type="radio" name="jobTitle" value="Software Engineer">
<input class="s-c bottom" type="radio" name="jobTitle" value="Software Engineer">
<span class="label">Software Engineer</span>
<span class="opt-val">Software Engineer</span>
</div>
<div class="option">
<input class="s-c top" type="radio" name="jobTitle" value="Data Scientist">
<input class="s-c bottom" type="radio" name="jobTitle" value="Data Scientist">
<span class="label">Data Scientist</span>
<span class="opt-val">Data Scientist</span>
</div>
<div class="option">
<input class="s-c top" type="radio" name="jobTitle" value="Product Manager">
<input class="s-c bottom" type="radio" name="jobTitle" value="Product Manager">
<span class="label">Product Manager</span>
<span class="opt-val">Product Manager</span>
</div>
<div id="option-bg"></div>
</div>
</div>
</form>
<div id="questionArea" style="display:none;">
<h2 id="question"></h2>
<input type="text" id="answer" placeholder="Your answer">
<button id="nextButton">Next Question</button>
</div>
<div id="resultArea" style="display:none;">
<h2>Your score: <span id="score"></span></h2>
</div>
<script src="app6.js"></script>
</body>
</html>