12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- </head>
- <body>
- <style>
- table {
- border-collapse: collapse;
- }
- td {
- width: 30px;
- height: 30px;
- border: 1px solid black;
- padding: 4px;
- text-align: center;
- }
- .highlight {
- background:lightgreen;
- }
- </style>
- <table id = "table"> </table>
- <script src="js.js"></script>
- </body>
- </html>
|