(5×2=10 ) 5 table
code
<html>
<head>
<style type="text/css">
body{
color:red;
background:#000;}
h1{
color:blue;
}
span{
color:yellow;
font-size:4em;
}
</style>
<title>
</title>
</head>
<body>
<center>
<span>Javascript</span>
<h1 >Create table</h1>
<script type="text/javascript">
var y=5;
for( i=1;i<=10;++i){
document.write( y+ " × " +i+ " = " + i * y +"<
br/>");
}
</script>
</center>
Comments