12345678910111213141516171819202122232425 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- <style>
- table {
- width: 400px;
- height: 400px;
- border: 1px solid red;
- text-align: center;
- border-collapse: collapse;
- table-layout: fixed;
- }
- td, th {
- border: 1px solid red;
- }
- </style>
- </head>
- <body>
- <script src="12_HTML_optional_fields.js"></script>
- </body>
- </html>
|