Example of HTML pre tag - HTML CSS HTML

HTML CSS examples for HTML:Text Format

Description

Example of HTML pre tag

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html lang="en">
 <head> 
  <title>Example of HTML pre tag</title> 
 </head> <!--from   w  w w .  ja  v  a 2s  . c  om-->
 <body> 
  <pre>
    The pre
        element preserves      spaces,
            line-breaks, tabs...
    </pre>   
 </body>
</html>

Related Tutorials