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
|
<!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="hello(event)">
<input type="text" placeholder="Guess" autofocus>
</form>
<p id="result"></p>
</body>
</html>
|