multiple attributes in style tag code example
Example 1: how to write multiple style in html
<h1 style="color:blue;text-align:center">This is a header</h1>
<p style="color:green">This is a paragraph.</p>
Example 2: set multiple attributes css javascript
document.getElementById("myElement").style.cssText = "display: block; position: absolute";
Example 3: style attribute in html
<p style="color: red; /* CSS */">Example</p>