programming-examples/html/Basics/Preformatted text (Preserve line breaks and spaces).html

13 lines
268 B
HTML
Raw Normal View History

2019-11-18 14:44:36 +01:00
<!DOCTYPE html>
<html subLang="en">
<head>
<title>Example of HTML pre tag</title>
</head>
<body>
<pre>
The pre
element preserves spaces,
line-breaks, tabs...
</pre>
</body>
</html>