24 lines
No EOL
660 B
HTML
24 lines
No EOL
660 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Catch the Dot</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<div class="game-area">
|
|
<div class="game-header">
|
|
<h1>Catch the Dot</h1>
|
|
<div class="score-container">
|
|
<span>Dots: </span>
|
|
<span id="dotCount">1</span>
|
|
</div>
|
|
</div>
|
|
<div class="game-footer">
|
|
<p class="message">Watch them multiply!</p>
|
|
</div>
|
|
</div>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |