Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

จะเพิ่มข้อความที่จัดรูปแบบไว้ล่วงหน้าใน HTML ได้อย่างไร?


ใช้แท็ก

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