Code used to make a table title.
What is <th>?
Code used to make a 1px border.
What is table, th, td {border: 1px}?
Code used for subscript.
What is <sub>?
Code that is used for information in the columns of the table.
What is <td>?
Code used to make 12 px padding.
What is table, th, td {padding: 12 px}?
Code used to put quotation marks around the word hello.
What is <p><q>hello</q></p>?
Code used for superscript.
What is <sup>?
Code used to define a row.
What is <tr>?
Three tags used in a table. The first groups the headings, second groups the content in the middle, third groups the footer.
What is <thead>, <tbody>, and <tfoot>?
Code used to show that USA is an abbreviation for United States of America.
What is <abbr title="United States of America">USA</abbr>?
Tag used to define a list.
What is <li>?
Section within the code where table style code is written.
What is the <style> section?
Code used to make a heading span multiple rows.
What is colspan?
Tag used to display the contact information of the author.
What is <address>?
Tag used to define a ordered list.
What is <ol>?
Tag that defines a table.
What is <table>?
Code used to make the entire table have a solid red 1 px border, and have the borders collapse into one.
What is table, th, td {border: 1px solid red; border-collapse: collapse;}?
Code used to properly display the title of the work the Mona Lisa.
What is <cite>Mona Lisa</cite>?
Tag used to define an unordered list.
What is <ul>?