-
Notifications
You must be signed in to change notification settings - Fork 0
/
box.html
153 lines (139 loc) · 4.12 KB
/
box.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html>
<head>
<title>Solid Border</title>
<style>
.box1 {
background-color: #ffcccc;
height: 150px;
width: 300px;
border-style: solid;
border-width: 3px;
border-color: #ff6666;
border-radius: 15px;
box-shadow: 2px 2px 5px 10px rgb(138, 136, 136);
margin-top: 50px;
margin-left: 40px;
margin-right: 30px;
margin-bottom: 100px;
padding: 5px 15px 5px 15px;
}
.box1:hover {
border-radius: 50px;
transition: 2s;
}
.box2 {
height: 200px;
width: 300px;
background-color: #99c2ff;
border: solid 4px;
border-left: 5px solid rgb(68, 255, 0);
border-top: 5px solid red;
border-right: 5px solid blue;
border-bottom: 5px solid green;
border-radius: 15px;
box-shadow: 2px 2px 5px 10px rgb(138, 136, 136);
margin-top: 50px;
margin-left: 40px;
margin-right: 30px;
margin-bottom: 100px;
padding: 5px 15px 5px 15px;
}
.box2:hover {
border-radius: 50px;
transition: 2s;
}
.box3 {
background-color: yellow;
height: 200px;
width: 300px;
border-style: double;
border-color: black;
border-width: 10px;
border-radius: 15px;
box-shadow: 2px 2px 5px 10px rgb(138, 136, 136);
margin-top: 50px;
margin-left: 40px;
margin-right: 30px;
margin-bottom: 100px;
padding: 5px 15px 5px 15px;
}
.box3:hover {
border-radius: 50px;
transition: 2s;
}
.box4 {
background-color: yellow;
height: 200px;
width: 300px;
border-style: dashed;
border-color: black;
border-width: 10px;
border-radius: 15px;
box-shadow: 2px 2px 5px 10px rgb(138, 136, 136);
margin-top: 50px;
margin-left: 40px;
margin-right: 30px;
margin-bottom: 100px;
padding: 5px 15px 5px 15px;
}
.box4:hover {
border-radius: 50px;
transition: 2s;
}
.box5 {
background-color: yellow;
height: 200px;
width: 300px;
border-style: dotted;
border-color: black;
border-width: 10px;
border-radius: 15px;
box-shadow: 2px 2px 5px 10px rgb(138, 136, 136);
margin-top: 50px;
margin-left: 40px;
margin-right: 30px;
margin-bottom: 100px;
padding: 5px 15px 5px 15px;
}
.box5:hover {
border-radius: 50px;
transition: 2s;
}
</style>
</head>
<body>
<div class="box1">
<ol type="i">
<li>css stands for cascading style sheet</li>
<li>There are three types of CSS: external, internal, and inline.</li>
<li>External CSS commands are written in a separate file from the main HTML page</li>
</ol>
</div>
<div class="box2">
<ol type="i">
<li>css stands for cascading style sheet</li>
<li> These are then linked to each web page by a command in the HTML file.</li>
<li>The display property is used to specify how an element is shown on a web page.</li>
</ol>
</div>
<div class="box3"><ol type="i">
<li>css stands for cascading style sheet</li>
<li> These are then linked to each web page by a command in the HTML file.</li>
<li>The display property is used to specify how an element is shown on a web page.</li>
</ol>
</div>
<div class="box4"><ol type="i">
<li>css stands for cascading style sheet</li>
<li> These are then linked to each web page by a command in the HTML file.</li>
<li>The display property is used to specify how an element is shown on a web page.</li>
</ol>
</div>
<div class="box5"><ol type="i">
<li>css stands for cascading style sheet</li>
<li> These are then linked to each web page by a command in the HTML file.</li>
<li>The display property is used to specify how an element is shown on a web page.</li>
</ol>
</div>
</body>
</html>