- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloop2.html
More file actions
Latest commit
29 lines (28 loc) · 477 Bytes
/
Copy pathloop2.html
File metadata and controls
29 lines (28 loc) · 477 Bytes
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
<!DOCTYPE html>
<htmllang="en">
<head>
<metacharset="UTF-8">
<title>demo</title>
</head>
<body>
<pid="ja"></p>
<script>
for(i=0;i<=19;i++){
if(i<=4){
for(j=0;j<=30;j++){
document.write('*')
}
document.write('<br/>')
}else{
document.write('**','<br/>')
}
}
</script>
<br/><br/><br/>
<br/><br/><br/>
<br/><br/><br/>
<br/><br/><br/>
<br/><br/><br/>
<br/><br/><br/>
</body>
</html>