Preformatted Text with Email Link

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:".


HTML Character Entities

Here is a table with a few of the HTML character entities.
Character Entities What They Display
& Ampersand(&)
< > Less Than (<) and Greater Than (>)
© Copyright Sign (© )
¼ Fraction One Quarter (¼)

Sample HTML with < and > Symbols

<!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>