-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcssBoder&Background.html
More file actions
35 lines (33 loc) · 1.01 KB
/
cssBoder&Background.html
File metadata and controls
35 lines (33 loc) · 1.01 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
<!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>Boder and Background</title>
<style>
#firstPara{
background-color: aquamarine;
height: 100px;
width: 455px;
border: 4px solid green;
/* border-width: 4px;
border-color: green;
border-style: solid; */
border-radius: 20px;
}
#SecondPara{
background-color:lightsalmon;
height: 100px;
width: 30px;
border-top: 2px solid violet;
border-right: 2px solid violet;
}
</style>
</head>
<body>
<h3>This is about Boder and Background</h3>
<p id="firstPara">CSS Boder and Background is a very interesting topic.</p>
<p id="secondtPara">This is second para</p>
</body>
</html>