about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--index.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/index.html b/index.html
index d4fd3cc..e7300f8 100644
--- a/index.html
+++ b/index.html
@@ -8,11 +8,12 @@
 	</head>
 	<body>
 		<h1>Guessing Game</h1>
-		<form onsubmit="checkAnswer(event)">
-			<input type="text" placeholder="Guess" autofocus>
-		</form>
 		<p id="hint"></p>
 		<p id="win"></p>
 		<p id="attempt"></p>
+		<form onsubmit="checkAnswer(event)">
+			<input type="text" placeholder="Guess" autofocus>
+		</form>
+
 	</body>
 </html>