Advertisement
dereksir

Untitled

Nov 28th, 2023
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.58 KB | None | 0 0
  1. <table class="episodes">
  2.     <thead>
  3.         <tr>
  4.             <th>Number</th>
  5.             <th>Title</th>
  6.             <th>Description</th>
  7.             <th>Date</th>
  8.         </tr>
  9.     </thead>
  10.     <tbody>
  11.         <tr>
  12.             <td>1</td>
  13.             <td>Episode 1</td>
  14.             <td>Description of Episode 1</td>
  15.             <td>2023-01-01</td>
  16.         </tr>
  17.         <tr>
  18.             <td>2</td>
  19.             <td>Episode 2</td>
  20.             <td>Description of Episode 2</td>
  21.             <td>2023-02-01</td>
  22.         </tr>
  23.         <!-- Other rows... -->
  24.     </tbody>
  25. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement