Filter (Advanced Search)
Downloads
1
Views
400
Video

The HTML Style Attribute | Styles

Details

<!DOCTYPE html>
<html>
<head>
<title>
    The HTML Style Attribute
</title>
<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>


Output


Ad