-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (70 loc) · 2.4 KB
/
Copy pathindex.html
File metadata and controls
81 lines (70 loc) · 2.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Maths Speed Multiplier</title>
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="global.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<div class="navbar" id="nav">
<li><a class="bold">MSM</a></li>
<div class="nav-content">
<ul>
<li><a href="./index.html">home</a></li>
<li><a href="./practice.html#+by99">practice</a></li>
<li><a href="./credit.html">more</a></li>
</ul>
</div>
</div>
<div class="links">
<li><a href="./practice.html#+by99">Addition</a></li>
<li><a href="./practice.html#-by99">Subtraction</a></li>
<li><a href="./practice.html#allby99">All operations</a></li>
<li><a href="./practice.html#xby99">Multiplication</a></li>
<li><a href="./practice.html#/by99">Division</a></li>
</div>
<h1 id="plzhelpiwannagohome" >TEST YOUR MATH SKILLS!</h1>
<div class="cards">
<div class="card">
<div class="title">Functionality</div>
<br>
<div class="why">Generating math questions. <br>
<br>
Allowing users to answer and receive feedback.
<br> <br>
Tracking scores for self-evaluation.</div>
</div>
<div class="card">
<div class="title">Modern</div>
<br>
<div class="why">Clean, minimalist interface. <br> <br>
Responsive layout for any device. <br> <br>
Clear, interactive question display. <br> <br>
Instant feedback with explanations.</div>
</div>
<div class="card">
<div class="title">Simple</div>
<br>
<div class="why">Straightforward interface: No clutter, just questions. <br> <br>
User-defined practice <br><br>
Immediate feedback: Know if you're right on the spot.</div>
</div>
<div class="abloodyquote">
"Life's fun with more maths in it." <br>
<lol>- SHADY INDIAN GUY</lol>
</div>
</div>
<h1>ABOUT THE SITE.</h1>
</body>
</html>
<script>
$(document).ready(function () {
// Hide the body initially
$('body').hide();
// Fade in the body with a duration of 1000 milliseconds (1 second)
$('body').fadeIn(1000);
});
</script>