Basic HTML Page

23.07.2024 by zreadme
<!DOCTYPE html>
<html>
    <head>
        <title>My cool page</title>
    </head>
    <body>
        <h1>Hallo!</h1>
        This is my cool text.<br>
    </body>
</html>

<!DOCTYPE html>
<html>
    <head>
        <title>My cool page</title>
        <meta name="description" content="This is my cool page.">
        <style>
            .MyCssStyle1 { color:green; font-weight: bold; font-size: 20px; }
        </style>
    </head>
    <body>
        <h1>Hallo!</h1>
        This is my cool text.<br>
        <span class="MyCssStyle1">And this is styled text!</span>
    </body>
</html>
 
support@zreadme.com