Pp's picture
Update index.html
0dcb362 verified
<!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>