Still waiting for the New York Times to send me a bogus takedown notice
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!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>
		<p id="hint"></p>
		<p id="win"></p>
		<p id="attempt"></p>
		<form>
			<input type="text" placeholder="Guess" autofocus>
		</form>
		<noscript>
			<p>
			Please enable JavaScript for the game to work
			</p>
		</noscript>
	</body>
</html>