Text in a pre element is displayed in a fixed-width font, and it preserves both spaces and line breaks. Send an email to Me using "mailto:".
| Character Entities | What They Display |
| & | Ampersand(&) |
| < > | Less Than (<) and Greater Than (>) |
| © | Copyright Sign (© ) |
| ¼ | Fraction One Quarter (¼) |
<!DOCTYPE html>
is always the first line in your HTML files
here is some simple HTML code:
<!DOCTYPE html>
<html>
<body>
<p>short paragraph</p>
</body>
</html>