The style
attribute in HTML is utilized for applying styling options to elements, including options for color, font, size, and more.
Example
The style of an HTML element can be modified using the style
attribute.
The HTML style attribute uses the following syntax:
<tagname style=”property:value;“> |
Here, the property refers to a CSS property, and the value corresponds to the desired CSS value.
Further CSS details will be covered later in this tutorial. |