-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4D_Math_Quiz_JS.html
69 lines (61 loc) · 2.09 KB
/
4D_Math_Quiz_JS.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
<!DOCTYPE html>
<html>
<head>
<!--
algebra test including JS, CSS and HTML
Name: Asim
Date: 4/13/24
Filename: project4D.html
-->
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hands-on Project 4D</title>
<link rel="stylesheet" href="styles4d.css" />
<script src="project4D.js" defer></script>
</head>
<body>
<header>
<h1>
Take the Algebra test!
</h1>
</header>
<article>
<h2>Algebra 1 Practice Quiz</h2>
<div id="container">
<div id="instructions">
<p>Click the <strong>Start Quiz</strong>button below
to start the quiz and begin the countdown. Upon completion, incorrect answers
will be marked in red. Retake the quiz as many times as you wish.
</p>
<input id="startquiz" value="Start Quiz"/>
<input id="quizclock"/>
</div>
<div id="quiz">
<table>
<tr>
<td>1) 5 + 2<em>x</em>= 25</td>
<td><em>x</em>=<input id="question1"/></td>
</tr>
<tr>
<td>2) 5<em>x</em>=10</td>
<td><em>x</em>=<input id="question2"/></td>
</tr>
<tr>
<td>3) 6 + 3<em>x</em>= –12</td>
<td><em>x</em>=<input id="question3"/></td>
</tr>
<tr>
<td>4) 44 12<em>x</em>= –16</td>
<td><em>x</em>=<input id="question4"/></td>
</tr>
<tr>
<td>5) 48 + 6 <em>x</em> = 6</td>
<td><em>x</em>=<input id="question5"/></td>
</tr>
</table>
</div>
<div id="overlay" class="hidequiz"></div>
</div>
</article>
</body>
</html>