Advertisement
mic52

Untitled

Feb 1st, 2020
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4. <head>
  5. <meta charset="UTF-8">
  6. <title>Tic Tac Toe by Mic</title>
  7.  
  8. <link rel="stylesheet" href="style.css">
  9.  
  10. </head>
  11.  
  12. <body>
  13. <button class="ms-Button" id="insert-paragraph">Created by MIC</button><br/><br/>
  14.  
  15.  
  16.  
  17. <table>
  18. <tr>
  19. <td class="cell" id="0"></td>
  20. <td class="cell" id="1"></td>
  21. <td class="cell" id="2"></td>
  22. </tr>
  23. <tr>
  24. <td class="cell" id="3"></td>
  25. <td class="cell" id="4"></td>
  26. <td class="cell" id="5"></td>
  27. </tr>
  28. <tr>
  29. <td class="cell" id="6"></td>
  30. <td class="cell" id="7"></td>
  31. <td class="cell" id="8"></td>
  32. </tr>
  33. </table>
  34. <div class="endgame">
  35. <div class="text"></div>
  36. <button onClick="startGame()">Replay</button>
  37. </div>
  38.  
  39.  
  40. <script src="script.js"></script>
  41. </body>
  42. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement