DEV Community

Arul .A
Arul .A

Posted on • Edited on

What is External CSS?

⦁ It is written in a separate .css file and linked to the html using link tag.
⦁ It is used when the same style applied to multiple pages.

 EX:
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
</html>
Enter fullscreen mode Exit fullscreen mode

Top comments (0)