The Caption Tag

The caption tag is used to add captions to a table.
A caption is center-aligned above the table by default.

Monthly Average Temps
Month Average Temperature
January 29
February 35


The code that produced the above output:

<table border="2">
<caption>Monthly Average Temps</caption>
<tr>
<th>Month</th>
<th>Average Temperature</th>
</tr>
<tr>
<th>January</th>
<th>29</th>
</tr>
<tr>
<th>February</th>
<th>35</th>
</tr>
</table>

I found information on the mark tag on the w3schools.com.

The Blockquote Tag

A blockquote tag indicates the text is an extended quotation.
By default, this is visually shown through an indentation.

The secret of getting ahead is getting started.

-Mark Twain

The code that produced the above output:

<blockquote>
<p>
The secret of getting ahead is getting started.
</p>
</blockquote>
<p>-Mark Twain</p>

I found information on the mark tag on the developer.mozilla.org.

The Mark Tag

The mark tag highlights text.

Example:

Though Mickey Mouse is the character that everyone remembers, it was Oswald the Rabbit who came first.

The code that produced the above output:

Though Mickey Mouse is the character that everyone remembers, it was < mark>Oswald the Rabbit< /mark> who came first.

I found information on the mark tag on the geeksforgeeks.com.
Return to Home Page