You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Web-Dev-For-Beginners/gameResetFunctionality/game.html

23 lines
687 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Game</title>
<link rel="stylesheet" href="./game.css">
</head>
<body>
<div class="container">
<h1>Typing Speed Test</h1>
<div id="quote-display">Click "Start" to begin.</div>
<input type="text" id="typed-value" disabled>
<div id="message"></div>
<!-- --- MODIFIED ---: The button now has a single ID and will be managed by JS -->
<button id="action-button" class="btn-start">Start Game</button>
</div>
<script src="./game.js"></script>
</body>
</html>