Wednesday, November 18, 2015

Multiplication Table in JavaScript

Here is a sample program that I wrote using JavaScript, CSS and HTML to generate a multiplication table the code is very simple and easy to understand.

If you  have some questions please send me an email at jake.r.pomperada@gmail.com and jakerpomperada@yahoo.com

My mobile number here in the Philippines is 09173084360.

Sample Program Output


Program Listing

<html>
<head>
<title>MULTIPLICATION TABLE </title>
</head>
<style>
body {
  font-family:arial;
  font-size:20px;
  }
 </style>  
<body>
<br>
<h3 align="center"> MULTIPLICATION TABLE</h3>
<script language="JavaScript">

document.write("<center><table border='1px'>");

for(var a = 1; a < 13; a++) {
    document.write("<tr style='height:40px'>");

for(var b = 1; b < 13; b++) {
    document.write("<td style='width:40px'><center><font size='4'>" 
+ a*b + "</center></font></td>");
}
document.write("</tr>");
}
document.write("</table></center>");

</script>
</head>
</body>
</html>



No comments:

Post a Comment