-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path34.html
41 lines (38 loc) · 951 Bytes
/
34.html
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
<html>
<head>
<style>
.p1{
border-style: dashed;
border-width: 2px 5px 4px 3px;
border-color: coral;
}
.p2{
border-top-style: dotted;
border-bottom-style: solid;
border-width: 2px 5px 4px 3px;
border-color:bisque black navy crimson;
}
.p3{
border-left: solid 8px brown;
}
.p4{
border:double brown 8px ;
border-radius: 15px;
}
</style>
</head>
<body>
<!--we can give top left and so -->
<!--2px,5px,4px,3px means "upper" ,"right", "bottom", "left"-->
<!-- bordre style
to give border to paragraph-->
<p class="p1" > Html ando css learning</p>
<p class="p2" > Html and css learning</p>
<p class="p3" > Html and css learning</p>
<p class="p4" > Html and css learning</p>
<p class="p5" > Html and css learning</p>
<p class="p6" > Html and css learning</p>
<p class="p7" > Html and css learning</p>
<p class="p8" > Html and css learning</p>
</body>
</html>