-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpengulangan.html
70 lines (60 loc) · 1.52 KB
/
pengulangan.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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
body {
background-color: black;
font-family: Courier;
}
img {
position: fixed;
width: 380px;
left: 32%;
}
.asu {
color: green;
font-weight: bold;
}
.ft {
color: brown;
text-align: center;
width: auto;
position: fixed;
top: 40%;
left: 30%;
height: auto;
font-size: large;
}
</style>
<title>Document Variable</title>
</head>
<body>
<img src="https://www.thesprucepets.com/thmb/-l0USC9EkVoj6aPOpmiFupHO1Pw=/3600x2400/filters:no_upscale():max_bytes(150000):strip_icc()/GettyImages-160959234-59ceef256f53ba00119ccd2a.jpg" alt="kucing">
<div id class="asu">
<p>Hallo</p>
<script>
document.writeln('Pengulangan FOR');
for (let x = 0; x < 10; x++) {
document.writeln("kuncay<br>");
}
document.writeln("<br>");
var i = 0;
while (i < 10) {
document.write("kuncay <br>"); i++
}
document.writeln("<br>");
var x = 0;
do {
document.write('asu <br>'); x++
} while (x < 5);
</script>
</div>
</div>
<div id class="ft">
<p> H4cked by mrkuncay ft Tejch_0</p>
<h2>"BAGI SAYA WISKES KALAO NGGAK<br> HANCUR NI SERVER"</h2>
<p style="color: white;
font-size: small;">root@mrkuncay:, Leb4h-Ganteng, Ti3ti3dMucla55 </p>
</div>
</body>
</html>