booger_quest/public/index.html
Jason McPheron e31ad10ba6 🤖 Plandex → apply pending changes
✏️  Revamp site with zany theme
2024-04-21 09:53:37 -07:00

21 lines
700 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🎉 Zany Timer Extravaganza 🎉</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="main-content">
<h1>Welcome to the 🎉 Zany Timer Extravaganza 🎉</h1>
<p>Try to tap the timer button consistently to play the game. 🕒</p>
<button id="timerButton">⏱️ Start/Stop Timer ⏱️</button>
<div id="timerHistory">
<h2>Timer History 📜</h2>
<ul id="historyList"></ul>
</div>
</div>
<script src="script.js"></script>
</body>
</html>