summaryrefslogtreecommitdiffstats
path: root/HTML/Chapter/Ch. 6 hands-on assignments/Ch6_msglm/6.2.boxborder.html
blob: 5adac0694b3a975021934e2e3aa5f36b4187fb3b (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
<!DOCTYPE html>
<html lang="en">
    <head>
        <title>Examples of the Box Model</title>
        <meta charset="utf-8">
        <style>
body { background-color: #FFFFFF;
}
h1 { background-color: #D1ECFF; 
    padding-left: 60px;
    border-bottom: 3px ridge #330000;
}
#box { background-color: #74C0FF;
    margin-left: 60px;
    padding: 5px 10px;
    border: 1px solid #000000;
}
        </style>
    </head>
    <body>
        <h1>Examples of the Box Model</h1>
        <div id="box">HTML elements display as boxes on web pages. This div element is configured to have a blue background.</div>



    </body>
</html>