Advertisement
Josif_tepe

Untitled

Apr 21st, 2023
945
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.90 KB | None | 1 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <link rel="stylesheet" href="styles.css">
  5.     <meta charset="UTF-8">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <title>Tic Tac Toe</title>
  8. </head>
  9. <body>
  10.     <div class = "container">
  11.         <h1 id = "playerText">Tic Tac Toe</h1>
  12.         <button id = "restartButton">Restart</button>
  13.         <div id = "gameboard">
  14.             <div class = "box" id = "0"></div>
  15.             <div class = "box" id = "1"></div>
  16.             <div class = "box" id = "2"></div>
  17.             <div class = "box" id = "3"></div>
  18.             <div class = "box" id = "4"></div>
  19.             <div class = "box" id = "5"></div>
  20.             <div class = "box" id = "6"></div>
  21.             <div class = "box" id = "7"></div>
  22.             <div class = "box" id = "8"></div>
  23.         </div>
  24.     </div>
  25.     <script src = "logic.js"></script>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement