|
<!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"> |
|
|
|
Click the pizza that matches the order! |
|
</div> |
|
|
|
<div id="pizza-options-area"> |
|
<h2>Choose the Pizza:</h2> |
|
<div id="pizza-choices"> |
|
|
|
</div> |
|
</div> |
|
|
|
</div> |
|
|
|
<script src="script.js"></script> |
|
</body> |
|
</html> |