
The HTML style attribute defines a style for an element (can be used on all HTML elements).
The HTML style attribute overrides any style set globally (for example styles defined in the <style> tag).
Example:
<!DOCTYPE html>
<html>
<body>
<p style="color:#e76f51; text-decoration: underline;">This is a paragraph.</p>
<h4 style="color:#264653; background-color: #e9c46a;">This is a header.</h4>
</body>
</html>
Output:
This is a paragraph.
This is a header.
Read also: