- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How do we create preformatted text in HTML?
Use the <xmp> tag to create preformatted text.
Note − The <xmp> tag deprecated.
Example
You can try to run the following code to learn how to create preformatted text in HTML −
<!DOCTYPE html> <html> <head> <title>HTML xmp Tag</title> </head> <body> HTML tags include <xmp><b> for bold text</b>, <i> for italic text.</i></xmp> </body> </html>
Advertisements