HTML - Build a Website
This course covers the basics of building a website using HTML. Work your way through the videos/articles and I'll teach you everything you need to know to create a basic website!

Tables

Lesson 12
Author : GOUP
Last Updated : September, 2020


Code

Copy<table>
     <caption>My Table</caption>
     <thead>
          <tr>
               <th>num1</th>
               <th>num2</th>
               <th>num3</th>
          </tr>
     </thead>
     <tbody>
          <tr>
               <td colspan="2">one</td>
               <td>two</td>
               <td>three</td>
               <td>three and a half</td>
          </tr>
          <tr>
               <td>four</td>
               <td>five</td>
               <td>six</td>
          </tr>
     </tbody>
</table>