Welcome to External CSS ✨

The external style sheet is generally used when you want to make changes on multiple pages. It is ideal for this condition because it facilitates you to change the look of the entire web site by changing just one file.

It uses the <link> tag on every pages and the <link> tag should be put inside the head section.

Code to link CSS file

        <link rel="stylesheet" href="styles.css"/>
    

Advantages of External CSS