HTML href Attribute


The href attribute of the <link> element is used to set the url of the external resource.

Following is the syntax −

<link href="url">

Above, the url is the url of the linked document. Let us now see an example to implement the href attribute of the <link> element −

Example

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="new.css">
</head>
<body>
   <h1>Demo Heading</h1>
   <p>This is demo text.</p>
</body>
</html>

We have an external document above “new.css”, which is linked using href. This document is a CSS style file −

h1{
   color − blue;
}
p{
   background-color − red;
}

Output

This will produce the following output. We styled the heading and text in the above “new.css” −

Updated on: 29-Jun-2020

176 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements