Skip to content
Snippets Groups Projects
baecker.php 378 B
Newer Older
  • Learn to ignore specific revisions
  • Simon Pototzki's avatar
    Simon Pototzki committed
    <?php
    
    echo <<< HTML
    
    <!DOCTYPE html>
    <html lang="de">  
    <head>
        <meta charset="UTF-8" />
        <!-- für später: CSS include -->
        <!-- <link rel="stylesheet" href="XXX.css"/> -->
        <!-- für später: JavaScript include -->
        <!-- <script src="XXX.js"></script> -->
        <title>Text des Titels</title>
    </head>
    <body>
        <p>Eigentlicher Inhalt</p>
    </body>
    </html>
    
    HTML;