The <link> element defines the relationship between the current document and an external resource.
The <link> tag is most often used to link to external style sheets:
Live Demo & Try it yourself!
Video is not available... Embedded is previous playlist.
The <link> element defines the relationship between the current document and an external resource.
The <link> tag is most often used to link to external style sheets:
<!DOCTYPE html>
<html>
<head>
<title>link Element</title>
<link rel="stylesheet" href="/html/css/styles.css">
</head>
<body>
<h1>GSSS KHOKHAR</h1>
<p>Sri Muktsar Sahib</p>
</body>
</html>