Advertisement
lemansky

Untitled

Feb 24th, 2021
929
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.44 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Document</title>
  6. </head>
  7. <body>
  8.     <table>
  9.         <caption>
  10.             My Multi Level Table
  11.         </caption>
  12.         <thead>
  13.             <tr>
  14.                 <th rowspan="2">
  15.                     Column 0
  16.                 </th>
  17.                 <th rowspan="2">
  18.                     Column 1
  19.                 </th>
  20.                 <th colspan="2">
  21.                     Column 2
  22.                 </th>
  23.             </tr>
  24.             <tr>
  25.                 <th>Column 2a</th>
  26.                 <th>Column 2b</th>
  27.             </tr>
  28.         </thead>
  29.     </table>
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement