The pre tag is used to display preformatted text in HTML document. pre tag preserves the content structure it can be used to show pre-formated data stored in the database and in another documents and to show computer codes programs to HTML document.
Syntax:
1 | <pre>... |
Example:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | <!DOCTYPE html> <html> <head> <title> Example of HTML pre tag </title> </head> <body> <pre> This is a pre tag example. This preserves the text strutcture Done!! |