Home  >  Article  >  Web Front-end  >  How to add preformatted text in HTML?

How to add preformatted text in HTML?

王林
王林forward
2023-08-19 19:53:181110browse

How to add preformatted text in HTML?

Use the

 tag to add pre-formatted text in HTML. The HTML <pre class="brush:php;toolbar:false"> tag is used to indicate preformatted text. Code tags surround the tagged code. <p >Browsers typically render preformatted text in a fixed-width font, preserving whitespace, and without line breaks. </p><h2>Example</h2><p >You can try running the following code to see how to operate with the </p><pre class="brush:php;toolbar:false"> tag−<pre class='brush:php;toolbar:false;'><!DOCTYPE html>
<html>
   <head>
      <title>HTML pre Tag</title>
   </head>
   <body>
      <pre class="brush:php;toolbar:false">
         This text is
         in a fixed-pitch
         font, and it preserves
         both spaces and line breaks
      
   

The above is the detailed content of How to add preformatted text in HTML?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete