Beispiel:Präformatiert2.html
Aus SELFHTML-Wiki
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Präformatierten Text mit CSS formatieren</title>
<style>
pre {
background-color: darkblue;
color: yellow;
font-family: Fixedsys,Courier,monospace;
padding: 10px;
}
</style>
</head>
<body>
<h1>Software-Entwicklung</h1>
<pre>
#include <nonsense.h>
#include <lies.h>
#include <spyware.h> /* Microsoft Network Connectivity library */
#include <process.h>; /* For the court of law */
</pre>
</body>
</html>