Beispiel:Präformatiert2.html

Aus SELFHTML-Wiki
Wechseln zu: Navigation, Suche
<!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 &lt;nonsense.h&gt;
#include &lt;lies.h&gt;
#include &lt;spyware.h&gt; /* Microsoft Network Connectivity library */
#include &lt;process.h&gt;; /* For the court of law */
    </pre>
  </body>
</html>