Advertisement
thotfrnk

tables and images.html

Nov 10th, 2022
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.54 KB | None | 0 0
  1. class work
  2.  
  3. <!DOCTYPE html>
  4.  
  5. <html lang="en-US">
  6.  
  7.        <head>
  8.        
  9.               <meta charset="utf-8">
  10.              
  11.               <title>Tables</title>
  12.        
  13.        </head>
  14.        
  15.        <body>
  16.                <!--Adding tables-->
  17.                <h1> Making Tables </h1>
  18.                
  19.                <p> Making tables in html. </p>
  20.                
  21.                
  22.                <table border="10" cellspacing="5" cellpadding="5">
  23.                
  24.                       <tr>
  25.                            <th colspan="3">Anime</th>
  26.                       </tr>
  27.                      
  28.                       <tr>
  29.                            <th>Currently Watching</th>
  30.                            
  31.                            <th>Watched</th>
  32.                            
  33.                            <th>Plan to Watch</th>
  34.                       </tr>
  35.                      
  36.                       <tr>
  37.                            <td>Spy x Family</td>
  38.                            <td>Kaguya-sama: Love is War</td>
  39.                            <td>Mob Psycho 100</td>
  40.                       </tr>
  41.                      
  42.                       <tr>
  43.                            <td>Chainsaw man</td>
  44.                            <td>Haikyuu!!</td>
  45.                            <td>Jujustu Kaisen Season 2</td>
  46.                       </tr>
  47.                      
  48.                       <tr>
  49.                            <td>Beastars</td>
  50.                            <td>Kuroko's Baseketball</td>
  51.                            <td>Demon Slayer Season 3</td>
  52.                       </tr>
  53.                
  54.                
  55.                </table>
  56.                
  57.                <br>
  58.                
  59.                <p> This table is about k-dramas. </p>
  60.                
  61.                <table border="10" cellspacing="5" cellpadding="5">
  62.                
  63.                         <tr>
  64.                              <th colspan="3">K-dramas</th>
  65.                         </tr>
  66.                        
  67.                         <tr>
  68.                            <th>Currently Watching</th>
  69.                            
  70.                            <th>Watched</th>
  71.                            
  72.                            <th>Plan to Watch</th>
  73.                       </tr>
  74.                      
  75.                       <tr>
  76.                            <td>Little Women</td>
  77.                            <td>Mr. Queen</td>
  78.                            <td>Why Her</td>
  79.                       </tr>
  80.                      
  81.                       <tr>
  82.                            <td>Extraordinary You</td>
  83.                            <td>Vincenzo</td>
  84.                            <td>Under the Queen's Umbrella</td>
  85.                       </tr>
  86.                      
  87.                       <tr>
  88.                            <td>Our Blues</td>
  89.                            <td>Penthouse: War in Life</td>
  90.                            <td>Eat, Love, Kill</td>
  91.                       </tr>
  92.                
  93.                </table>
  94.                
  95.                <!--adding images-->
  96.                <h1>Images</h1>
  97.                
  98.                <figure>
  99.                        <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">
  100.                        
  101.                        <figcaption>TAEYONG of NCT</figcaption>
  102.                 </figure>      
  103.                
  104.                <br>
  105.                
  106.                <figure>
  107.                        <img src="taeyong2.jpg" alt="This images shows Lee Taeyong during NCT 127's Cherry Bomb promotions." width="200" height="300" title="TAEYONG">
  108.                        
  109.                        <figcaption>TAEYONG of NCT</figcaption>
  110.                 </figure>      
  111.                
  112.        
  113.        </body>
  114.  
  115. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement