글수 22
<html>
<head>
<title>Untitled Document</title>
<style type="text/css">
</style>
</head>
<script>
var c=1;
document.write('A');
for(var j=1;j<=3;j++){
document.write('B');
for(var i=1;i<=3;i++){
document.write('C');
document.write("<span style='font-size:30'>" + c++ +"</span>");
document.write('D');
}
document.write('E');
document.write("<br>");
}
document.write('F');
</script>
<body>
</body>
</html>



<html>
<head>
<title>Untitled Document</title>
<style type="text/css">
</style>
</head>
<script>
var c=1;
document.write('<table border=1>');
for(var j=1;j<=10;j++){
document.write('<tr>');
for(var i=1;i<=10;i++){
document.write('<td>');
document.write("<span style='font-size:30'>" + c++ +"</span>");
document.write('</td>');
}
document.write('</tr>');
}
document.write('</table>');
</script>
<body>
</html>