1
<!doctype html>
2
<title>CSS Properties Example</title>
3
<style>
4
    body {
5
        background: darkslategrey;
6
        font-family: sans-serif;
7
        font-size: 1.3em;
8
    }
9
    section {
10
        padding: 20px;
11
        margin: 20px;
12
        background-color: cornsilk;
13
        border: 6px solid gold;
14
    }
15
    h1 {
16
        color: coral;
17
    }
18
    p {
19
        color: orange;
20
    }
21
    a:link,
22
    a:visited {
23
        color: darkorange;
24
    }
25
    a:hover {
26
        color: orangered;
27
    }
28
    a:active {
29
        background: orangered;
30
        color: white;
31
    }
32
</style>
33
    <section>
34
        <h1>Basic CSS Properties Example</h1>
35
        <p>This is a basic example to demonstrate how CSS properties can be applied to a web page.</p>
36
        <p><a href="/css/properties/" target="_blank">CSS properties list &rarr;</a></p>
37
    </section>