index.html 959 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>Sudoku</title>
  8. <style>
  9. body {
  10. text-align: center;
  11. }
  12. table {
  13. margin: auto;
  14. border-collapse: collapse;
  15. font-size: 28px;
  16. background: #EA6622;
  17. width: 300px height: 300px font-weight: 200;
  18. border: 4px solid black;
  19. }
  20. td,
  21. th {
  22. border: 1px solid black;
  23. font-weight: 200;
  24. text-align: center;
  25. padding: 4px 14px;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <h1>Sudoku</h1>
  31. <input type="button" value="Перезагрузить страницу" onClick="window.location.href=window.location.href">
  32. <script src="sudok.js"></script>
  33. </body>
  34. </html>