load external css file in html code example

Example 1: add css file to html

/*
Adding css file into html document
*/

<link rel="stylesheet" type="text/css" href="yourstylesheetname.css">  /* add this line into head tag of the file with change in file name. */

/*
I hope it will help you.
Namaste
*/

Example 2: connect html file to css

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

Example 3: link css file in html

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

Example 4: how to link an css file to html

<link rel="stylesheet" href="hi.css">

Example 5: how to import a css file in html

To add, make a stylesheet and to import we write <link rel="stylesheet" href="styles.css">

Tags:

Css Example