|
<!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"> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
</div> |
|
|
|
</div> |
|
|
|
<script src="script.js"></script> |
|
</body> |