SELF-Treffen in Mannheim 2025

SELFHTML wird 30 Jahre alt!
Die Mitgliederversammlung findet am 24.05.2025 um 10:00 statt. Alle Mitglieder und Interessierte sind herzlich eingeladen.
Davor und danach gibt es Gelegenheiten zum gemütlichen Beisammensein. → Veranstaltungs-Ankündigung.

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>