summaryrefslogtreecommitdiffstats
path: root/HTML/Chapter/Ch. 6 hands-on assignments/Ch6_msglm/opacitych6/6.8.rgba.html
blob: c6ca7ced677702a444ae3159bf00e3335f0794ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
    <head>
        <title>Page Title Goes Here</title>
        <style>
#content { background-image: url(fall.jpg);
    background-repeat: no-repeat;
    margin: auto;
    width: 640px;
    height: 480px;
    padding-top: 20px; 
}

h1 { 
    color: #ffffff;
    color: rgba(255, 255, 255, 0.8);
    font-family: Verdana, Helvetica, sans-serif;
    font-size: 5em;
    padding-right: 10px;
    text-align: right; 
}


        </style>
    </head>
    <body>

        <div id="content">
            <h1> Fall Nature Hikes</h1>
        </div>



    </body>
</html>