<link> Tag in HTML

In this article i am going to explain about Link tag in HTML
  • 1474

Definition

<link> tag used to connect with the other document. It define the relationship between the current web page and other document.

Supporting Browsers

Internet Explorer, Mozilla Firefox, Google Chrome, Safari and Opera are the supporting browsers.

Example
 

<html>
<head>
    <title>Our Products</title>
</head>
<body>
    <p>
        Have you seen our <a href="file://localhost/C:/Users/Public/Pictures/Sample%20Pictures/Clipboard07.jpg">
            image</a>
</body>
</html>

  Output

link.h3.jpg

Further Readings

You may also want to read these related articles

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.