PRE
Run
<!doctype html>
<html>
    <head>
        <title>
            The pre tag
        </title>
    </head>
    <body>
        <h1>This is an example of pre tag</h1>
        <pre>
            HTML stands for HyperText markup Language.
            It is used to create      static Web Pages.
        </pre>
    </body>
</html>