-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10-DIV_05.html
62 lines (61 loc) · 1.35 KB
/
10-DIV_05.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>programile6</title>
<style type="text/css">
.buyukkutu {
width: 600px;
height: 400px;
margin: 10px auto;
}
.kutu1 {
width: 300px;
height: 110px;
background-color: black;
color: white;
font: bold 18px tahoma;
text-align: center;
padding: 90px 0 0 0;
float: left;
}
.kutu2 {
width: 300px;
height: 200px;
background-color: yellow;
color: black;
font: bold 18px tahoma;
text-align: right;
float: left;
}
.kutu3 {
width: 150px;
height: 30px;
background-color: red;
color: yellow;
font: bold 18px tahoma;
text-align: right;
float: left;
padding: 170px 0 0 150px;
}
.kutu4 {
width: 300px;
height: 110px;
background-color: green;
color: white;
font: bold 18px tahoma;
text-align: left;
float: left;
padding: 90px 0 0 0;
}
</style>
</head>
<body>
<div class="buyukkutu">
<div class="kutu1">BEŞİKTAŞ</div>
<div class="kutu2">FENERBAHÇE</div>
<div class="kutu3">GALATASARAY</div>
<div class="kutu4">BURSASPOR</div>
</div>
</body>
</html>