connect-four.html 587 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html>
  3. <!-- Connect 4 Game in HTML, JS, and CSS -->
  4. <!-- By PythonCoder8-->
  5. <!-- Tested on Google Chrome, Apple Safari, Brave, Microsoft Edge, and does not work on Internet Explorer -->
  6. <head>
  7. <meta charset="UTF-8">
  8. <title>Connect 4</title>
  9. <link rel="stylesheet" href="styles.css">
  10. <link href="favicon.ico" rel="icon" type="image/x-icon" />
  11. </head>
  12. <body>
  13. <div class='text'>
  14. <h1 id="h1">Connect 4</h1>
  15. </div>
  16. <button onclick="start_game();" class='button' id='button'>Start Game</button>
  17. <script src="connect-four.js"></script>
  18. </body>
  19. </html>