How To Link CSS to HTML

There are many ways to add CSS codes to HTML document. In this article, you will learn all possible methods to include CSS code to an HTML document.

Advertisements

Every browser comes with default style sheet which is immediately applied to the HTML page. There are three other ways to add style information to an HTML document. They are as follows.

1. Inline CSS

2. Internal CSS

3. External CSS

Let’s discuss each one of them in detail.

Inline CSS

The inline CSS codes are added directly to an HTML element. They are the closest to an HTML element and override other CSS rules.

Example of Inline CSS

<h1 style="background:black;color: red;font-size:18px ;">

This style of inline CSS was used in both HTML 4 and HTML 5. However, they are not recommended and a lot of inline CSS codes was deprecated in HTML 5 because we like to keep style information separate from the HTML. They are not practical if you have many CSS rules to apply.

Internal CSS

There is another way to add css rules to your web page. The internal CSS rules are applied by placing your code between the following section.

<head>

...

</head>

There is a special markup <style >…</style> to add internal css rules.

Example of internal CSS

<! DOCTYPE html>

<html>

    <head>

        <title>Internal CSS</title>

        <style type="text/css">

            h2 {

            background-color: lightgreen;

            }

        </style>

    </head>

    <body>

        <h2> Internal CSS </h2>

        <p>This is an example of internal CSS</p>

    </body>

</html>

Result of Internal CSS

Advertisements

The result of the above code is given below. You can see that the CSS code has changed the background color of heading to light green.

Figure 1 - Internal CSS applied to HTML webpage
Figure 1 – Internal CSS applied to HTML webpage

Note: In the style markup <style type=”text/css”> is not required in HTML 5. You can use <style> … </style> for internal css.

External CSS

The internal CSS rules are fine as long as fewer lines of style information is added to HTML document. The Internal CSS is faster because the codes are separate from HTML markup tags. But you have to write the codes for each and every page separately and often repeat the same code all over again for a new page.

The real problem starts when the size of the style rules grows when you keep adding new elements or pages. The external CSS is the solution to this problem. You create a new CSS file and keep all your rules in this file. Link CSS file back to the HTML document. You can use the same linked CSS file for multiple pages.

Example of External Link CSS

In this example, you will create an external CSS file, add style codes to the CSS file and finally link CSS to an HTML page. You need a text editor such as Notepad or Notepad++, Sublime Text, etc.

Step 1: create a new css file with extension .css . Let’s call this file as main.css.

Create main.css file
Figure 2 – Create a main.css file

Step 2: Insert the following code to the file – main.css.

h1 {

    background-color: black;
    color: red;
    padding: 20px;
    text-align: center;
}
Add CSS code to the main.css file
Figure 3 – Add CSS code to the main.css file

Step 3: Create a new file called Index.html. Open with notepad or a text editor in your computer like Notepad++. Link the external CSS – main.css file to HTML using the code given below.

<! DOCTYPE html>

    <html>

    <head>

            <title>External CSS</title>

            <!-- linking external css file -->

            <link rel="stylesheet" type="text/css" href="main.css">

    </head>

    <body>

        <h1>External CSS Example</h1>

        <hr>

        <p>This is an example of external css file linked to HTML webpage. </p>

    </body>

</html>
Link CSS to HTML page
Figure 4 – Link CSS to HTML page

Open the index.html in a browser window.

Result of External CSS

The result of the above code is given below. The external CSS file linked to HTML loads and render the CSS style rules effectively.

Result of external CSS applied to HTML page.
Figure 5 – The result of external CSS applied to the HTML page.

Link CSS file is relatively slower than other CSS methods. But, there are other advantages like keeping style elements in a single location separate from HTML that compensate for the speed.

Advertisements

Ads Blocker Image Powered by Code Help Pro

Ads Blocker Detected!!!

We have detected that you are using extensions to block ads. Please support us by disabling these ads blocker.