Basic Elements
H1 - Heading 1
<h1>H1 - Heading 1</h1>
H2 - Heading 2
<h2>H2 - Heading 2</h2>
H3 - Heading 3
<h3>H3 - Heading 3</h3>
H4 - Heading 4
<h4>H4 - Heading 4</h4>
This is a paragraph with a horizontal rule above it.
<hr />
<p>This is a paragraph with a horizontal rule above it.</p>
A question link icon help (link text must be help or question).
<a class="ss-icon" href="http://example.org">help</a>
A question link icon help (link text must be help or question).
<a class="ss-icon" href="http://example.org">help</a>
An link indicating it opens in a new window
<a class="ss-redirect right" href="http://example.org" target="_blank">An link indicating it opens in a new window</a>
<a class="more" href="http://example.org">More link</a>
<a class="button" href="http://example.org">Button</a>
This is a blockquote!
<blockquote>This is a blockquote!</blockquote>
Lists
- Unordered list item
- Unordered list item
- Unordered list item
- Ordered list item
- Ordered list item
- Ordered list item
<ul>
<li>Unordered list item</li>
<li>Unordered list item</li>
<li>Unordered list item</li>
</ul>
<ol>
<li>Ordered list item</li>
<li>Ordered list item</li>
<li>Ordered list item</li>
</ol>
Tables
| Table heading | Table heading | Table heading | Table heading |
|---|---|---|---|
| Table cell | Table cell | Table cell | Table cell |
| Table cell | Table cell | Table cell | Table cell |
| Table cell | Table cell | Table cell | Table cell |
<table>
<thead>
<tr>
<th>Table heading</th>
<th>Table heading</th>
<th>Table heading</th>
<th>Table heading</th>
</tr>
</thead>
<tbody>
<tr>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
</tr>
<tr>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
</tr>
<tr>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
<td>Table cell</td>
</tr>
</tbody>
</table>