blob: 39427fa6b9f389f8dddc72cbf3d36a90f5bd8e1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<html lang="en">
<head>
<title>Guessing Game</title>
<script src="script.js" defer></script>
<link href="style.css" rel="stylesheet">
</head>
<body>
<h1>Guessing Game</h1>
<form onsubmit="checkAnswer(event)">
<input type="text" placeholder="Guess" autofocus>
</form>
<p id="result"></p>
<p id="win"></p>
<p id="attempt"></p>
</body>
</html>
|