Computer >> Máy Tính >  >> Lập trình >> HTML

Làm cách nào để thêm văn bản được định dạng sẵn trong HTML?


Sử dụng thẻ

<!DOCTYPE html>
<html>
   <head>
      <title>HTML pre Tag</title>
   </head>
   <body>
      <pre>
         This text is
         in a fixed-pitch
         font, and it preserves
         both spaces and line breaks
      </pre>
   </body>
</html>