Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.

Well done!

You have completed (UPI) Chapter 6: Navigating with HTML Links and Structuring Data with Tables!

Instruction

Example: Simple Table Structure

<table>
  <caption>Book Sales Report</caption>
  <tr>
    <th>Book</th>
    <th>Year Published</th>
    <th>Sales</th>
  </tr>
  <tr>
    <td>PHP and MySQL</td>
    <td>2017</td>
    <td>$372,381</td>
  </tr>
  <tr>
    <td>JavaScript and jQuery</td>
    <td>2020</td>
    <td>$305,447</td>
  </tr>
  <tr>
    <td>Python Programming</td>
    <td>2021</td>
    <td>$292...