RGBA Generator
RGBA generator lets you generate visualize colors and opacity in the CSS3 color format of RGBA. The rgba color can be used in the background-color property and the color property in css.
1RGBA Options
Red ({{vm.red}})
Green ({{vm.green}})
Blue ({{vm.blue}})
Opacity ({{vm.opacity}})
2CSS Code
function MultiplicationTable() { // Use single-spaced text for Multiplication table document.write("") var i, j, total; // global variables for (i = 1; i <= 10; i++) { for (j = 1; j < 10; j++) { total = i * j; total = " " + total //add space before each number // Add another space before single digits if (total < 10) total = " " + total; // Display result document.write(total); } // end inner j loop document.write(""); }
"); // end of line break } // end of i outer loop document.write("
3Preview
Preview