programming-examples/html/_Basics/Preformatted text (Preserve line breaks and spaces).html
2019-11-15 12:59:38 +01:00

13 lines
268 B
HTML

<!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>