-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (42 loc) · 1.4 KB
/
index.html
File metadata and controls
43 lines (42 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300italic,700,700italic">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.4.1/milligram.css">
<link rel="stylesheet" href="assets/css/style.css">
<title>Interview</title>
</head>
<body>
<div class="overlay"></div>
<div class="container">
<header>
<h1>Interview</h1>
</header>
<div class="row">
<table>
<thead>
<tr>
<th>Question</th>
<th>Rating</th>
<th>Comment</th>
</tr>
</thead>
<tbody class="questions-container">
</tbody>
</table>
</div>
<button onclick="showQuestionPopup()">Add Questions</button>
</div>
<div class="modal">
<h3>Add Question</h3>
<textarea class="questions" name="" rows="20"></textarea>
<button onclick="addQuestions()" class="add-question">Add Questions</button>
<button onclick="cancel()" class="button button-black button-outline cancel-question">Cancel</button>
</div>
<script src="assets/js/script.js"></script>
</body>
</html>