HTML <pre>
tag is used to specify pre formatted texts. Texts within <pre>...</pre>
tag is displayed in a fixed-width font. It maintains both space and line break.
HTML <pre>
tag is used to specify pre formatted texts. Texts within <pre>...</pre>
tag is displayed in a fixed-width font. It maintains both space and line break.
See this example:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Example of HTML pre tag</title>
</head>
<body>
<pre>
This is a example of
HTML pre tag. It maintains
both space and line break.
</pre>
</body>
</html>