<!DOCTYPE html>
<html>
<head>
<title>Playing with Inline Styles</title>
</head>
<body>
<p style="color:blue;font-size:46px;">
I'm a big, blue, <strong>strong</strong> paragraph
</p>
</body>
</html>
<p style="background-color:red;">inline style</p>
<p style="color: red">text</p>
<p style="color: purple">This Is Paragraph</p>
// Change the background color to red
document.body.style.backgroundColor = "red";