Update index.html
Browse files- index.html +34 -25
index.html
CHANGED
@@ -3,40 +3,49 @@
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
-
|
7 |
-
|
8 |
<link rel="stylesheet" href="style.css">
|
9 |
-
<link href="https://fonts.googleapis.com/css2?family=
|
10 |
</head>
|
11 |
<body>
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
|
|
|
|
|
|
16 |
</div>
|
17 |
|
18 |
-
<div
|
19 |
-
|
20 |
-
<
|
21 |
-
|
22 |
-
|
23 |
</div>
|
24 |
-
|
25 |
-
<!-- Finger Stop -->
|
26 |
-
<div id="finger-stop"></div>
|
27 |
</div>
|
28 |
|
29 |
-
|
|
|
|
|
30 |
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
|
38 |
-
</div>
|
39 |
|
40 |
<script src="script.js"></script>
|
41 |
-
</body>
|
42 |
-
</html>
|
|
|
3 |
<head>
|
4 |
<meta charset="UTF-8">
|
5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Multiplication Farm! π§βπΎ</title>
|
7 |
+
|
8 |
<link rel="stylesheet" href="style.css">
|
9 |
+
<link href="https://fonts.googleapis.com/css2?family=Lilita+One&display=swap" rel="stylesheet">
|
10 |
</head>
|
11 |
<body>
|
12 |
+
|
13 |
+
<div id="game-wrapper">
|
14 |
+
|
15 |
+
<h1>Multiplication Farm!</h1>
|
16 |
+
|
17 |
+
<div id="score-area">
|
18 |
+
Score: <span id="score">0</span> / <span id="total-questions">10</span>
|
19 |
</div>
|
20 |
|
21 |
+
<div id="problem-area">
|
22 |
+
<h2>Time to Plant/Gather!</h2>
|
23 |
+
<p>Show me this multiplication:</p>
|
24 |
+
<div id="multiplication-problem">
|
25 |
+
<span id="num1">?</span> x <span id="num2">?</span> = ?
|
26 |
</div>
|
|
|
|
|
|
|
27 |
</div>
|
28 |
|
29 |
+
<div id="feedback-area">
|
30 |
+
Click the farm plot that matches the problem!
|
31 |
+
</div>
|
32 |
|
33 |
+
<div id="farm-options-area">
|
34 |
+
<h2>Choose the Correct Farm Plot:</h2>
|
35 |
+
<div id="field-choices">
|
36 |
+
<!-- Farm plot options will be dynamically added here by JS -->
|
37 |
+
<!-- Example of one plot option structure (repeated by JS) -->
|
38 |
+
<!--
|
39 |
+
<div class="field-option" data-rows="3" data-cols="4">
|
40 |
+
<div class="item">π</div> <div class="item">π</div> <div class="item">π</div> <div class="item">π</div>
|
41 |
+
<div class="item">π</div> <div class="item">π</div> <div class="item">π</div> <div class="item">π</div>
|
42 |
+
<div class="item">π</div> <div class="item">π</div> <div class="item">π</div> <div class="item">π</div>
|
43 |
+
</div>
|
44 |
+
-->
|
45 |
+
</div>
|
46 |
+
</div>
|
47 |
|
48 |
+
</div> <!-- End of game-wrapper -->
|
49 |
|
50 |
<script src="script.js"></script>
|
51 |
+
</body>
|
|