Winter 2025/2026

Vorlagen

(1) HTML, minimalistisch
<!doctype html>
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <title>Mein Seitentitel</title>
        
    <style>



    </style>
</head>


<body>



</body>
(2) HTML, minimalistisch, mit CSS-Reset
<!doctype html>
<head>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/destyle.css@4.0.1/destyle.css">

    <title>Mein Seitentitel</title>
        
    <style>



    </style>
</head>


<body>



</body>