Markup

Fonts

Bold

The quick brown fox

<strong>The quick brown fox</strong>

Italics

The quick brown fox

<em>The quick brown fox</em>

Underline

The quick brown fox

<span style="text-decoration: underline;">The quick brown fox</span>

Headings

h1

The Quick Brown Fox

<h1>The Quick Brown Fox</h1>

h2

The Quick Brown Fox

<h2>The Quick Brown Fox</h2>

h3

The Quick Brown Fox

<h3>The Quick Brown Fox</h3>

h4

The Quick Brown Fox

<h4>The Quick Brown Fox</h4>

h5

The Quick Brown Fox
<h5>The Quick Brown Fox</h5>

h6

The Quick Brown Fox
<h6>The Quick Brown Fox</h6>

Paragraphs

The quick brown fox jumps over the lazy dog. A mad boxer shot a quick, gloved jab to the jaw of his dizzy opponent. The job requires extra pluck and zeal from every young wage earner.

<p>The quick brown fox jumps over the lazy dog. A mad boxer shot a quick, 
gloved jab to the jaw of his dizzy opponent. The job requires extra pluck
and zeal from every young wage earner.</p>

Lists

Ordered List

  1. Item A
  2. Item B
  3. Item C
  4. Item D
<ol>
<li>Item A</li>
<li>Item B</li>
<li>Item C</li>
<li>Item D</li>
</ol>

Unordered List

  • Item 1
  • Item 2
  • Item 3
  • Item 4
<ul>
<li>Item A</li>
<li>Item B</li>
<li>Item C</li>
<li>Item D</li>
</ul>

Lists within Lists

  1. Apply to TCC
  2. Submit your FAFSA
    • Enter Tarrant County College's school code: 003626
    • Utilize the IRS Retrieval Tool directly from your FAFSA when possible
    • Make certain you are using the correct academic year when completing the FAFSA:
      • 2014-2015 FAFSA: Fall 2014, Spring 2015 and Summer 2015
    • The FAFSA may also be completed over the phone by calling 1-800-433-3243
<ol>
<li><a title="Apply for Admission" href="/admission/how-to-apply/index.html">Apply to TCC</a></li>
<li><a title="Apply for FAFSA" href="http://fafsa.ed.gov" target="_blank">Submit your FAFSA</a>
<ul>
<li>Enter Tarrant County College's <strong>school code: 003626</strong></li>
<li>Utilize the IRS Retrieval Tool directly from your FAFSA when possible</li>
<li>Make certain you are using the <strong>correct academic year</strong> when completing the FAFSA:
<ul>
<li>2014-2015 FAFSA: Fall 2014, Spring 2015 and Summer 2015</li>
</ul>
</li>
<li>The FAFSA may also be completed over the phone by calling 1-800-433-3243</li>
</ul>
</li>
</ol>

Tables

  Column1 Column2 Column3 Column4
Row1 A1 B1 C1 D1
Row2 A2 B2 C2 D2
Row3 A3 B3 C3 D3
Row4 A4 B4 C4 D4
<table class="table--3x4">
<tbody>
<tr>
<th>&nbsp;</th>
<th>Column1</th>
<th>Column2</th>
<th>Column3</th>
<th>Column4</th>
</tr>
<tr>
<th>Row1</th>
<td>A1</td>
<td>B1</td>
<td>C1</td>
<td>D1</td>
</tr>
<tr>
<th>Row2</th>
<td>A2</td>
<td>B2</td>
<td>C2</td>
<td>D2</td>
</tr>
<tr>
<th>Row3</th>
<td>A3</td>
<td>B3</td>
<td>C3</td>
<td>D3</td>
</tr>
<tr>
<th>Row4</th>
<td>A4</td>
<td>B4</td>
<td>C4</td>
<td>D4</td>
</tr>
</tbody>
</table>

Updated January 20, 2023