first commit

This commit is contained in:
Ronnie 2025-05-29 21:30:12 -04:00
commit 792fbfa5bb
5 changed files with 329 additions and 0 deletions

24
index.html Normal file
View file

@ -0,0 +1,24 @@
<!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>