|
<!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"> |
|
|
|
<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> |
|
|
|
|
|
<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> |
|
|
|
|
|
<div id="game-area"> |
|
<div id="y-axis-labels"> |
|
|
|
</div> |
|
<div id="grid-container"> |
|
|
|
</div> |
|
</div> |
|
|
|
<div id="x-axis-container"> |
|
<div id="x-axis-labels"> |
|
|
|
</div> |
|
</div> |
|
|
|
|
|
<div id="feedback"> |
|
Click a square to start! |
|
</div> |
|
|
|
<script src="script.js"></script> |
|
</body> |
|
</html> |