The pre tag in HTML
- 24-07-2022
- Trung Minh
- 0 Comments
The pre tag defines a preformatted piece of text.
The text in the pre tag pair will be displayed in a fixed-width font (usually Courier), which will preserve both spaces and line breaks.
How to use the pre . card
Example : Use the pre tag to print pre-formatted text.
<!DOCTYPE html> <html> <head> <title>Học lập trình miễn phí tại web888.vn</title> <meta charset="utf-8"> </head> <body> <h1>Học lập trình miễn phí tại web888.vn</h1> <pre> PHP (viết tắt của cụm từ Personal Home Page) là ngôn ngữ lập trình kịch bản (scripting language) mã nguồn mở được dùng phổ biến để ra tạo các ứng dụng web chạy trên máy chủ </pre> </body> </html>
Attributes of the pre . tag
The pre tag supports all Global Attributes in HTML.