16_matrix_to_html_table.html 422 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. <style>
  7. table {
  8. width: 400px;
  9. height: 400px;
  10. border: 1px solid red;
  11. text-align: center;
  12. border-collapse: collapse;
  13. table-layout: fixed;
  14. }
  15. td {
  16. border: 1px solid red;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <script src="16_matrix_to_html_table.js"></script>
  22. </body>
  23. </html>