样式

代码
doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="huyiwei">
<title>九九乘法表title>
head>
<body>
<h4>九九乘法表h4>
<script type="text/javascript">
var i,j;
for(i=1;i<10;i++) {
for(j=1;j<=i;j++) {
document.write(j);
document.write('*');
document.write(i);
document.write('=');
document.write(i*j);
document.write(' ');
}
document.write('
');
}
script>
body>
html>