-Annie-

chessBoard.html

May 25th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.61 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>ChessBoard</title>
  6.     <style>
  7.         body {
  8.             background: #CCC;
  9.         }
  10.  
  11.         .chessboard {
  12.             display: inline-block;
  13.         }
  14.  
  15.         .black, .white {
  16.             width:50px; height:50px;
  17.             display: inline-block;
  18.         }
  19.  
  20.         .black {
  21.             background: black;
  22.         }
  23.  
  24.         .white {
  25.             background: white;
  26.         }
  27.     </style>
  28. </head>
  29. <body>
  30. <script src="chessBoard.js"></script>
  31. <script>
  32.     document.write(getBoard(5));
  33. </script>
  34. </body>
  35. </html>
Add Comment
Please, Sign In to add comment