12345678910111213141516171819202122232425 |
- <!DOCTYPE html>
- <html>
- <!-- Connect 4 Game in HTML, JS, and CSS -->
- <!-- By PythonCoder8-->
- <!-- Tested on Google Chrome, Apple Safari, Brave, Microsoft Edge, and does not work on Internet Explorer -->
- <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>
- </div>
- <button onclick="start_game();" class='button' id='button'>Start Game</button>
- <script src="connect-four.js"></script>
- </body>
- </html>
|