-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCSS_task2.html
44 lines (39 loc) · 1.05 KB
/
CSS_task2.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
<!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>Document</title>
<style>
#greenbox{
background-color: green;
width: 100;
height: 100;
}
.pinkbox{
background-color: pink;
width: 100;
height: 100;
color: green;
text-align: center;
text-transform: uppercase;
text-shadow: 2px 1px;
font-family: Arial, Helvetica, sans-serif;
font-style: oblique;
font-size: 20px;
border-style: solid groove;
border-width: 5px;
border-color: black;
border-radius: 20px;
margin-top: 100px;
margin-bottom: 100px;
margin-left: 100px;
margin-right: 100px;
}
</style>
</head>
<body>
<div class='pinkbox'>I am hungry</div>
</body>
</html>