index.html 449 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <style>
  9. table {
  10. border-collapse: collapse;
  11. }
  12. td {
  13. width: 30px;
  14. height: 30px;
  15. border: 1px solid black;
  16. padding: 4px;
  17. text-align: center;
  18. }
  19. .highlight {
  20. background:lightgreen;
  21. }
  22. </style>
  23. <table id = "table"> </table>
  24. <script src="js.js"></script>
  25. </body>
  26. </html>