Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class work
- <!DOCTYPE html>
- <html lang="en-US">
- <head>
- <meta charset="utf-8">
- <title>Tables</title>
- </head>
- <body>
- <!--Adding tables-->
- <h1> Making Tables </h1>
- <p> Making tables in html. </p>
- <table border="10" cellspacing="5" cellpadding="5">
- <tr>
- <th colspan="3">Anime</th>
- </tr>
- <tr>
- <th>Currently Watching</th>
- <th>Watched</th>
- <th>Plan to Watch</th>
- </tr>
- <tr>
- <td>Spy x Family</td>
- <td>Kaguya-sama: Love is War</td>
- <td>Mob Psycho 100</td>
- </tr>
- <tr>
- <td>Chainsaw man</td>
- <td>Haikyuu!!</td>
- <td>Jujustu Kaisen Season 2</td>
- </tr>
- <tr>
- <td>Beastars</td>
- <td>Kuroko's Baseketball</td>
- <td>Demon Slayer Season 3</td>
- </tr>
- </table>
- <br>
- <p> This table is about k-dramas. </p>
- <table border="10" cellspacing="5" cellpadding="5">
- <tr>
- <th colspan="3">K-dramas</th>
- </tr>
- <tr>
- <th>Currently Watching</th>
- <th>Watched</th>
- <th>Plan to Watch</th>
- </tr>
- <tr>
- <td>Little Women</td>
- <td>Mr. Queen</td>
- <td>Why Her</td>
- </tr>
- <tr>
- <td>Extraordinary You</td>
- <td>Vincenzo</td>
- <td>Under the Queen's Umbrella</td>
- </tr>
- <tr>
- <td>Our Blues</td>
- <td>Penthouse: War in Life</td>
- <td>Eat, Love, Kill</td>
- </tr>
- </table>
- <!--adding images-->
- <h1>Images</h1>
- <figure>
- <img src="taeyong1.jpg" alt="This image shows Lee Taeyong, the leader of NCT. This image was taken during NCT 2020's Make A Wish Promotion." width="200" height="250" title="TAEYONG">
- <figcaption>TAEYONG of NCT</figcaption>
- </figure>
- <br>
- <figure>
- <img src="taeyong2.jpg" alt="This images shows Lee Taeyong during NCT 127's Cherry Bomb promotions." width="200" height="300" title="TAEYONG">
- <figcaption>TAEYONG of NCT</figcaption>
- </figure>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement