connect-four.html 518 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Connect 4</title>
  6. <link rel="stylesheet" href="styles.css">
  7. <link href="favicon.ico" rel="icon" type="image/x-icon" />
  8. </head>
  9. <body>
  10. <div class='text'>
  11. <h1 id="h1">Connect 4</h1>
  12. <br>
  13. <h3 id='h3'>If you have issues, e-mail ryan.satur@protonmail.com for technical support.</h3>
  14. </div>
  15. <br>
  16. <button onclick="start_game();" class='button' id='button'>Start Game</button>
  17. <script src="connect-four.js"></script>
  18. </body>
  19. </html>