Fraction_Pizza_Party / index.html
Pp's picture
Upload 3 files
28a75da verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fraction Pizza Party! πŸ•</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>Fraction Pizza Party!</h1>
<div id="score-area">
Score: <span id="score">0</span>
</div>
<div id="order-area">
<h2>Order Up!</h2>
<p>A customer wants:</p>
<div id="fraction-order" class="fraction-display">
<span class="numerator">?</span>
<span class="denominator">?</span>
</div>
</div>
<div id="feedback-area">
<!-- Feedback messages appear here -->
Click the pizza that matches the order!
</div>
<div id="pizza-options-area">
<h2>Choose the Pizza:</h2>
<div id="pizza-choices">
<!-- Pizza options will be dynamically added here by JS -->
</div>
</div>
</div> <!-- End of game-wrapper -->
<script src="script.js"></script>
</body>
</html>