-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackground_border_05.html
More file actions
59 lines (51 loc) · 1.64 KB
/
background_border_05.html
File metadata and controls
59 lines (51 loc) · 1.64 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Background & Border</title>
<style>
#home{
background-color: rgb(239,192,192);
border-color: rgb(234,89,28);
border-width: 3px;
border-style: double;
border: 2px blue dashed;
border: 4px coral solid;
border-radius: 15px; /* To make a curve rectangle */
}
#about{
background-color: #ffe4e1;
color: royalblue;
border-top: green 3px solid;
border-radius: 15px;
margin-bottom: 10px;
}
#contact{
background-image: url(./ship.jpg);
background-repeat: no-repeat;
background-position: center top;
background-size: cover;
background: url(./ship.jpg) no-repeat center center/cover;
width: 400px;
height: 300px;
color: seashell;
}
</style>
</head>
<body>
<div id="home">
<h2>Home</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Eligendi consequatur quasi ut rem facilis dolorum perspiciatis quod. Quasi, dolorum dolore.</p>
</div>
<div id="about">
<h2>About</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ea, minus.</p>
</div>
<div id="contact">
<h2>Contact</h2>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Voluptas, ab.</p>
</div>
</body>
</html>