File size: 1,886 Bytes
dbdfa02
 
 
 
 
0dcb362
 
dbdfa02
0dcb362
dbdfa02
 
0dcb362
 
 
 
 
 
 
dbdfa02
 
0dcb362
 
 
 
 
dbdfa02
 
 
0dcb362
 
 
1cf66db
0dcb362
 
 
 
 
 
 
 
 
 
 
 
 
 
dbdfa02
0dcb362
dbdfa02
 
0dcb362
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Multiplication Farm! πŸ§‘β€πŸŒΎ</title>

    <link rel="stylesheet" href="style.css">
    <link href="https://fonts.googleapis.com/css2?family=Lilita+One&display=swap" rel="stylesheet">
</head>
<body>

    <div id="game-wrapper">

        <h1>Multiplication Farm!</h1>

        <div id="score-area">
            Score: <span id="score">0</span> / <span id="total-questions">10</span>
        </div>

        <div id="problem-area">
            <h2>Time to Plant/Gather!</h2>
            <p>Show me this multiplication:</p>
            <div id="multiplication-problem">
                <span id="num1">?</span> x <span id="num2">?</span> = ?
            </div>
        </div>

        <div id="feedback-area">
            Click the farm plot that matches the problem!
        </div>

        <div id="farm-options-area">
            <h2>Choose the Correct Farm Plot:</h2>
            <div id="field-choices">
                <!-- Farm plot options will be dynamically added here by JS -->
                <!-- Example of one plot option structure (repeated by JS) -->
                <!--
                <div class="field-option" data-rows="3" data-cols="4">
                    <div class="item">🍎</div> <div class="item">🍎</div> <div class="item">🍎</div> <div class="item">🍎</div>
                    <div class="item">🍎</div> <div class="item">🍎</div> <div class="item">🍎</div> <div class="item">🍎</div>
                    <div class="item">🍎</div> <div class="item">🍎</div> <div class="item">🍎</div> <div class="item">🍎</div>
                </div>
                 -->
            </div>
        </div>

    </div> <!-- End of game-wrapper -->

    <script src="script.js"></script>
</body>