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

ovning5.html

66 lines UTF-8 Windows (CRLF)
<!DOCTYPE html>
<html lang="sv">

<head>
    <meta charset="utf-8">
    <title>Övning 4</title>
    <style>
        .center-table {
            margin: auto;
        }

        .align-right {
            text-align: right;
        }

        .align-top {
            vertical-align: top;
        }

        .align-bottom {
            vertical-align: bottom;
        }

        .spacer {
            padding-left: 25px;
            padding-right: 25px;
        }
        .red {
            background-color: red;
        }
        .blue {
            background-color: blue;
        }
        .black {
            background-color: black;
        }
        .green {
            background-color: green;
        }
        .yellow {
            background-color: yellow;
        }
    </style>
</head>

<body>
    <table class="center-table">
        <tr>
            <td><img src="./bilder/smiley.jpg" alt="smiley"></td>
            <td class="red"></td>
            <td><img src="./bilder/smiley.jpg" alt="smiley"></td>
        </tr>
        <tr>
            <td rowspan="2" class="red"></td>
            <td><img src="./bilder/smiley.jpg" alt="smiley"></td>
            <td class="red"></td>
        </tr>
        <tr>
            <td rowspan="0.5" class="green"></td>
            <td rowspan="0.5">Skapat av Love</td>
            <td rowspan="0.5" class="green"></td>
        </tr>
    </table>
</body>

</html>