Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <link rel="stylesheet" href="styles.css">
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Tic Tac Toe</title>
- </head>
- <body>
- <div class = "container">
- <h1 id = "playerText">Tic Tac Toe</h1>
- <button id = "restartButton">Restart</button>
- <div id = "gameboard">
- <div class = "box" id = "0"></div>
- <div class = "box" id = "1"></div>
- <div class = "box" id = "2"></div>
- <div class = "box" id = "3"></div>
- <div class = "box" id = "4"></div>
- <div class = "box" id = "5"></div>
- <div class = "box" id = "6"></div>
- <div class = "box" id = "7"></div>
- <div class = "box" id = "8"></div>
- </div>
- </div>
- <script src = "logic.js"></script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement