Edit in JSFiddle

<html>
    
    <head>
        <title>Inline Style</title>
        <style>
            p {
                color:Red;
                font-family:Comic sans ms;
            }
        </style>
    </head>
    
    <body>
        <p>This is example for Inline Style</p>
    </body>

</html>