HTML style tag is used inside HTML webpages to include the inline CSS. The inline CSS gives styling to the content of the website. The look and feel depends upon the CSS.
Syntax
1 2 3 |
<style> Enter your style with element class and id </style> |
Example
Test it Live
1 2 3 4 5 6 |
<style> .myspan{ color: red; } </style> <span class="myspan">This is the text in a span.</span> |
Output
This is the text in a span.