Other HTML Elements

Horizontal Rule


Code Example
<hr />

Blockquote

This is a blockquote

This is a blockquote

This is a blockquote

A cite
Code Example
<blockquote>
This is a blockquote
</blockquote>

<blockquote>
<p>This is a blockquote</p>
<p>This is a blockquote</p>
<cite>A cite</cite>
</blockquote>

Table

This is a table caption
Title Rating Released
Harvey 4.0 1950
The Shining 4.2 1980
Metropolis 4.1 1927
Code Example
<table>
	<caption>This is a table caption</caption>
	<thead>
		<tr>
			<th>Title</th>
			<th>Rating</th>
			<th>Released</th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td>Harvey</td>
			<td>4.0</td>
			<td>1950</td>
		</tr>
		<tr>
			<td>The Shining</td>
			<td>4.2</td>
			<td>1980</td>
		</tr>
		<tr>
			<td>Metropolis</td>
			<td>4.1</td>
			<td>1927</td>
		</tr>
	</tbody>
</table>

Code

This is some code

Code Example
<p><code>This is some code</code></p>

Keyboard

A Ctrl+C

Code Example
<p><kbd>A</kbd> <kbd>&rarr;</kbd> <kbd>Ctrl+C</kbd></p>

Preformatted

This is some preformatted text
Code Example
<pre>This is some preformatted text</pre>

Details

A details title

This is some content that is hidden by default.

A details title

This is some content that is hidden by default.

Code Example
<details>
	<summary>A details title</summary>
	<p>This is some content that is hidden by default.</p>
</details>
<details>
	<summary>A details title</summary>
	<p>This is some content that is hidden by default.</p>
</details>

Mark

This element is used for Text higlighting

Code Example
<p>This element is used for <mark>Text higlighting</mark></p>