Welcome to Inline CSS ✨

We can apply CSS in a single element by inline CSS technique.
The inline CSS is also a method to insert style sheets in HTML document. This method mitigates some advantages of style sheets so it is advised to use this method sparingly.
If you want to use inline CSS, you should use the style attribute to the relevant tag.

Code applied to Header

        <h1> style="padding-left:30%;font-size:30pt;background-color:deeppink;color:alicebluesmoke;">Welcome to Inline CSS ✨</h1>"
    

Disadvantages of Inline CSS