connect-four.html 408 B

12345678910111213141516171819202122
  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. </div>
  13. <button onclick="start_game();" class='button' id='button'>Start Game</button>
  14. <script src="connect-four.js"></script>
  15. </body>
  16. </html>