-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.38 KB
/
index.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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>Quadratics "Game"</title>
<script type="text/javascript" src="simple.js"></script>
<script type="text/javascript" src="shared.js"></script>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<div class="header-container">
<img src="carman.gif" alt="from https://bleach67.tripod.com/archive/anigi.html">
<h2>my really cool math web site</h2>
<img src="ani-chef.gif" alt="from https://www.angelfire.com/ia/sean917/animatedgifs.html">
</div>
<div class="container-of-all">
<div class="game-container">
<b>Standard Quadratic:</b>
<p id="std">STANDARD FORM QUADRATIC</p>
<b>Simplified (your!) Quadratic:</b>
<p id="smp">SIMPLIFIED FORM QUADRATIC</p>
<input type="number" id="f1">
<input type="number" id="f2">
<br>
<br>
<input type="number" id="c1">
<input type="number" id="c2">
<br>
<br>
<button id="submit" onclick="checkAnswer()">Submit</button>
<p id="status">...</p>
<div id="help-container" style="max-width: fit-content;"></div>
</div>
<div class="table-container" id="table-container">
<table id="faclist"></table>
</div>
</div>
<button class="fac-button" onclick="toggleFactorTable()">Toggle Factor Table</button>
<script>
setup();
</script>
</body>
</html>