<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>div test</title>
</head>
<style>
.myDiv {
border: 5px outset rgb(8, 90, 190);
background-color: rgb(22, 137, 175);
text-align: center;
}
.AnotherDiv {
    border: 5px outset rgb(9, 20, 59);
    text-align: center;
    background-color: red;
}
</style>
<body>
    <div class="AnotherDiv">
        <h1>This is another text!</h1>

    </div>
    <div class="myDiv">
        <h3>This is some text</h3>
        <p>some other text</p>
    </div>
    <div class="myDiv">
        <h3>Velkommen!</h3>
    </div>
</body>
</html>