HTML PRE ELEMENT
The HTML <pre> element represents a preformatted text that should be rendered exactly by the browser as it is written in the HTML File.
Example:
<! DOCTYPE html> <html> <head> <title> Pre Element</title> </head> <body> <p> my name is ramakrishna </p> <pre> my name is ramakrishna </pre> <body> <html> |
Output:
my name is ramakrishna
my
name
is
ramakrishna