Answers for "Which HTML attribute is used to define inline styles?"

4

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>
Posted by: Guest on May-28-2020
0

inline style, straight into the HTML tags using style attribute

<p style="color: red">text</p>
Posted by: Guest on June-04-2021

Code answers related to "Which HTML attribute is used to define inline styles?"

Browse Popular Code Answers by Language