Browse Source

Add files via upload

PythonCoder8 4 years ago
parent
commit
29eb8bd8f1
1 changed files with 25 additions and 0 deletions
  1. 25 0
      connect-four.html

+ 25 - 0
connect-four.html

@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<html>
+
+<head>
+    <meta charset="UTF-8">
+    <title>Connect 4</title>
+    <link rel="stylesheet" href="styles.css">
+    <link href="favicon.ico" rel="icon" type="image/x-icon" />
+</head>
+
+<body>
+
+<div class='text'>
+    <h1 id="h1">Connect 4</h1>
+    <br>
+    <h3 id='h3'>If you have issues, e-mail ryan.satur@protonmail.com for technical support.</h3>
+</div>
+
+<br>
+<button onclick="start_game();" class='button' id='button'>Start Game</button>
+
+<script src="connect-four.js"></script>
+</body>
+
+</html>