about summary refs log tree commit diff
path: root/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'index.html')
-rw-r--r--index.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..5438389
--- /dev/null
+++ b/index.html
@@ -0,0 +1,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>