How to include extrenal CSS files?

Using the <link> relationship tag, we can include one or more external CSS files.
Links to include external CSS files must be placed within the <head> </head> section of the HTML page.

syntax:

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

example:

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



Also, the same <link> relationship tag is used to include libraries of various frameworks, such as Bootstrap, Bulma, Tailwind, Ulkit, Animate.css and others.

example:

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






Privacy Policy