Learning_Coordinates / index.html
Pp's picture
Update index.html
7d2a207 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coordinate Hunt Adventure! 🗺️✨</title>
<link rel="stylesheet" href="style.css">
<!-- Fun Font (Optional but Recommended) -->
<link href="https://fonts.googleapis.com/css2?family=Lilita+One&display=swap" rel="stylesheet">
</head>
<body>
<h1>Coordinate Hunt Adventure!</h1>
<p id="prompt">Let's find some hidden items using the map coordinates!</p>
<!-- Score Display -->
<div id="score-display">Score: 0 / 10</div>
<div id="instructions">
Find <span id="item-name">the item</span> at: <strong id="target-coords">(?, ?)</strong>
</div>
<!-- Main container for grid and axes -->
<div id="game-area">
<div id="y-axis-labels">
<!-- Y Labels added by JS -->
</div>
<div id="grid-container">
<!-- Grid squares added by JS -->
</div>
</div>
<!-- Container for X-Axis Labels, positioned below game-area -->
<div id="x-axis-container">
<div id="x-axis-labels">
<!-- X Labels added by JS -->
</div>
</div>
<div id="feedback">
Click a square to start!
</div>
<script src="script.js"></script>
</body>
</html>