-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path07-DIV_02.html
More file actions
77 lines (74 loc) · 1.48 KB
/
Copy path07-DIV_02.html
File metadata and controls
77 lines (74 loc) · 1.48 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>programla3</title>
</head>
<body>
<div
style="
color: darkblue;
border: 5px solid #ebf102;
background: #0f7f7a;
width: 250px;
height: 140px;
text-align: center;
padding: 110px 0 0 0;
font: bold 20px helvetica;
position: fixed;
"
>
4.kutu
</div>
<div
style="
color: blueviolet;
border: 5px solid #ebf102;
background: #363636;
width: 250px;
height: 140px;
text-align: center;
margin: 20px auto 30px;
padding: 110px 0 0 0;
font: bold 20px helvetica;
position: static;
"
>
1.kutu
</div>
<div
style="
color: darkblue;
border: 5px solid #ebf102;
background: #f00f86;
width: 250px;
height: 140px;
text-align: center;
padding: 110px 0 0 0;
font: bold 20px helvetica;
position: relative;
margin-bottom: 50px;
margin-top: 100px;
"
>
2.kutu
</div>
<div
style="
color: darkblue;
border: 5px solid #ebf102;
background: #083d0c;
width: 250px;
height: 140px;
text-align: center;
padding: 110px 0 0 0;
font: bold 20px arial;
position: absolute;
left: 470px;
top: 1652px;
"
>
3.kutu
</div>
</body>
</html>