programming-examples/js/Htmldom/Modify paragraph text style through javascript code using button.js

7 lines
201 B
JavaScript
Raw Normal View History

2019-11-15 12:59:38 +01:00
function js_style()
{
//font styles added by JS:
text.style.fontSize = "14pt";
text.style.fontFamily = "Comic Sans MS";
text.style.color = "green";
}