Home → References → HTML Tags →
HTML Tag: pre
Preformatted text. Text where the whitespace (that is normally discarded by other elements) is as much a part of the content as the rest of the text. Commonly used to display computer code because it maintains nesting indentations.
HTML Dog is hosted by Titan Internet
Required Attributes
- None.
Optional Attributes
Example
<p>The basic structure of an HTML document:</p>
<pre>
<code><html></code>
<code><head></code>
<code></head></code>
<code><body></code>
<code>[stuff]</code>
<code></body></code>
<code></html> </code>
</pre>

