<!doctype html> <html> <head> <meta charset="utf-8"> <title>Beispiel zum code-Element</title> <style> body { margin: 3em; } .hinweis { font-style: italic; border-bottom: thin solid #ccc; color:red; } pre { background-color: darkblue; color: yellow; font-family: Fixedsys,Courier,monospace; padding: 0 1em; } </style> <body> <h1>Beispiel zum code-Element</h1> <p class="hinweis">Das Beispiel zeigt typische semantische Anwendungen des code-Elements.</p> <p>Ihr erstes PHP-Programm</p> <pre><code class="language-php"> <?php echo "Hello World\n"; ?> </code></pre> </body> </html>