-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintro2.html
82 lines (73 loc) · 2.79 KB
/
intro2.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>EXAM</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./css/tether.min.css" />
<link rel="stylesheet" href="./css/bootstrap.min.css" />
<link rel="stylesheet" href="./css/quiz.css" />
<!--<script type="text/javascript">
window.history.forward();
function noBack() {
window.history.forward();
}
</script>-->
</head>
<body style="background-image: url('./light-color-23.jpg');">
<a href="questions.html"><button class="btn-lg" id="startTest"><h2>START TEST</h2></button></a>
<table class="table">
<thead>
<tr>
<th scope="col">sr No.</th>
<th scope="col">SUBJECT</th>
<th scope="col">TOTAL QUESTIONS</th>
<th scope="col">TOTAL MARKS</th>
<th scope="col">NEGATIVE MARKING</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Physics</td>
<td>50</td>
<td>50</td>
<td>nill</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Chemistry</td>
<td>50</td>
<td>50</td>
<td>nill</td>
</tr>
<tr>
<th scope="row">4</th>
<td>Biology (botany + zoolagy)</td>
<td>50 + 50</td>
<td>50 + 50 = 100</td>
<td>nill</td>
</tr>
</tbody>
</table>
<div class="accordion accordion-flush" id="rules">
<div class="accordion-item">
<h2 class="accordion-header" id="flush-headingOne">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#flush-collapseOne" aria-expanded="false" aria-controls="flush-collapseOne">
RULES
</button>
</h2>
<div id="flush-collapseOne" class="accordion-collapse collapse" aria-labelledby="flush-headingOne" data-bs-parent="#accordionFlushExample">
<div class="accordion-body">
1. The paper contains total 200 questions.<br>
2. You have 3 hours to complete the paper.<br>
3.All questions are compulsory.<br>
</div>
</div>
</div>
<script src="./js/jquery-3.6.0.min.js"></script>
<script src="./js/tether.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script src="./js/quiz.js"> </script>
</body>
</html>