-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjs15.html
More file actions
49 lines (41 loc) · 1 KB
/
js15.html
File metadata and controls
49 lines (41 loc) · 1 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
<!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>JS'ye Giriş 15</title>
<style type="text/css">
div {
width: 200px;
height: 120px;
border-radius: 100px;
font: 24px tahoma;
color: white;
float: left;
text-align: center;
padding: 80px 0 0 0;
margin: 0 0 0 20px;
}
.daire1 {
background-color: #09c;
}
.daire2 {
background-color: #f63;
}
.daire3 {
background-color: #c69;
}
.daire4 {
background-color: #633;
}
</style>
</head>
<body>
<script type="text/javascript">
for (var i = 1; i < 5; i++) {
document.write("<div class='daire", i, "'>", i, "</div>");
}
</script>
</body>
</html>