HTML Code For Text Style Attributes

Learn HTML code for text style attributes or text style attribute tutorial such as color, font, size, and more.


<!DOCTYPE html>
<html>
<body>

<p>I am normal</p>
<p style="color:red;">I am red</p>
<p style="color:blue;">I am blue</p>
<p style="font-size:50px;">I am big</p>

</body>
</html>

HTML Code Displays


I am normal

I am red

I am blue

I am big