-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4.html
35 lines (34 loc) · 970 Bytes
/
4.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
<!doctype html>
<html>
<head>
<title>코딩바보</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<a href="1.html"><h1>BABO</h1></a>
<div id="grid">
<div class="left">
<script>
var list = ['체스바보','코딩바보','그냥바보'];
var link = ['3.html','4.html','5.html'];
</script>
<h3>list</h3>
<ol>
<script>
var i = 0;
while(i < list.length){
document.write(
'<li><a href = "'+link[i]+'">'+list[i]+'</a></li>'
);
i = i + 1;
}
</script>
</ol>
</div>
<div class="right">
<img src="coding.jpg" width="90%">
</div>
</div>
</body>
</html>