Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Times Table Simple v2</title>
  6. <style type="text/css">
  7. body {
  8. background-color: #00FFB3;
  9. }
  10. body,td,th {
  11. color: #007CFF;
  12. font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
  13. font-size: 24px;
  14. }
  15. textarea { width: 400px; height: 250px; }
  16. div {
  17. text-align:center;
  18. }
  19. </style>
  20. </head>
  21.  
  22. <body>
  23. <h2 align="center">Times Table Simple v2</h2>
  24. <div><textarea id="msg">
  25. </textarea>
  26. </div>
  27. <script>
  28. var col = 0, row = 0, str = "", prod = 0;
  29. for(row = 1; row <= 12; row++) {
  30. for(col = 1; col <= 12; col++) {
  31. prod = row * col;
  32. if(prod < 100) { prod = " " + prod; }
  33. if(prod < 10) { prod = " " + prod; }
  34. str += prod + " ";
  35. }
  36. str += "\n";
  37. }
  38. document.getElementById("msg").innerHTML = str;
  39. </script>
  40. </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement