Webbserver - Love Blomberg

Show sourcecode

The following files exists in this folder. Click to view.

public_html/gamla-kurser/webbutv1/ovningar/

baskod.html
bentogrid.html
bilder/
css/
gimp_logga.html
index.html
js/
meny1/
meny2/
ovning-flexbox.html
ovning0.html
ovning00.html
ovning1.html
ovning10.html
ovning11.html
ovning12.html
ovning2.html
ovning3.html
ovning4.html
ovning5.html
ovning6.html
ovning6b.html
ovning7.html
ovning8a.html
ovning8b.html
ovning9a.html
ovning9b.html
ovning9c.html
ovning9d.html
sida2.html

ovning00.html

65 lines UTF-8 Windows (CRLF)
<!DOCTYPE html>
<html lang="sv">
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Maven+Pro&display=swap');
        body {
            background-color: #323232;
        }
        h1 {
            font-family: 'Maven Pro', sans-serif;
            font-size: 50px;
            color: white;
            text-align: center;
        }
        p {
            font-family: 'Maven Pro', sans-serif;
            font-size: 20px;
            color: white;
        }
        button {
            font-family: 'Maven Pro', sans-serif;
            font-size: 15px;
            color: white;
            background-color: #323232;
            border: 2px solid white;
            border-radius: 5px;
            padding: 5px;
            cursor: pointer;
        }
    </style>

    <head>
        <meta charset="utf-8">
        <title>Övnings dokument</title>
    </head>

    <body>
        <!-- Innehåll -->
        <h1>Välkommen till Loves hemsida</h1>
        <h3>JAG</h3>
        <p>
            Jag heter Love och går på VGY i Gullmarsplan. Just nu studerar jag teknik och html.
        </p>
        <h3>MINA INTRESSEN</h3>
        <p>
            Jag är intresserad av datorer, bilar och att utveckla mjukvara som spel, appar mm. Jag bor i Älvsjö och är född i Täby. Mina tidigare kunskaper inom utveckling och data är främst spelutveckling i Unity och Godot samt lite python script och appar.
        </p>
        <hr>
        <div>
            <b>Love</b> <em>Blomberg</em>
            <br>2023-08-29
        </div>
        <hr>
        <div>
            <p>
                <button onclick="window.location.href='https://vgy.se';">
                    VGYs Hemsida
                </button>
                <button onclick="window.location.href='./ovningar/sida2.html';">
                    Alternativ bild
                </button>
            </p>
            <img src="./bilder/selfie.jpg" width="500" height="100" alt="selfie">
        </div>
    </body>
</html>