-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestion2.html
43 lines (35 loc) · 1.28 KB
/
question2.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
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">
<title>Question</title>
<link rel="stylesheet" href="question2.css">
<link href='https://fonts.googleapis.com/css?family=Questrial' rel='stylesheet'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="container">
<div class="timer">
</div>
<div class="box">
<form name="quiz" id="quiz">
<input class="btn" type="button" value="Submit" onclick="check()">
<input class="btn" type="reset" value="Reset">
</form>
</div>
<div class="result">
<p><h2>Congratulations Kwizard</h2><br> You have completed the Quiz.</p>
<p> You have scored <p id="marks"></p></p>
</div>
<script src="question.js">
</script>
<script src="question2.js">
</script>
<script>
window.onbeforeunload = function() {
alert("you can not refresh the page");
}</script>
</body>
</html>