Tutorial

How To Use the rel Attribute for Link Tags in HTML

Updated on September 23, 2020
    Default avatar

    By Alligator.io

    How To Use the rel Attribute for Link Tags in HTML

    Introduction

    The rel attribute inside link tags (<link>) describes the relation of a linked resource. rel can take one of these 16 values. Let’s examine them all.

    Prerequisites

    Here are the 16 values that the rel attribute can accept inside <link> tags:

    • alternate: Alternate version of the document.
    • author: Author of the document.
    • dns-prefetch: The DNS lookup and handshake should be prefetched for the linked resource.
    • help: A resource for help on about the whole document.
    • icon: An icon resource.
    • license: License and legal information.
    • manifest: Web App Manifest document.
    • next: Next document in the series.
    • pingback: External resource called for pingbacks in the comments.
    • preconnect: The connection should be opened in advance.
    • prefetch: The resource should be prefetched.
    • preload: The resource should be preloaded.
    • prerender: The resource should be prerendered.
    • prev: Previous document in the series.
    • search: A document meant to perform a search in the current document.
    • stylesheet: The most commonly used value. Linking to an external stylesheet.

    Note that dns-prefetch, preconnect, prefetch, preload, and prerender are simply hints to the browser and are currently experimental. They are not supported in all browsers, and you can refer to the Can I Use? page for more information about browser support. Here’s also a summary about the difference between the different behaviors for these resource hints.

    Here’s a typical scenario where we’ll see the rel tag in use:

    <link rel='stylesheet' href='style.css' type='text/css'>
    

    stylesheet is the most commonly used value.

    Conclusion

    The rel attribute inside <link> tags is an important feature of HTML. You can check out our related tutorial on the rel attribute inside <anchor> tags.

    Or, for a more comprehensive review of the HTML5 markup language, explore our series, How To Build a Website in HTML.

    Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

    Learn more about us


    About the authors
    Default avatar
    Alligator.io

    author



    Still looking for an answer?

    Ask a questionSearch for more help

    Was this helpful?
     
    Leave a comment
    

    This textbox defaults to using Markdown to format your answer.

    You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

    Try DigitalOcean for free

    Click below to sign up and get $200 of credit to try our products over 60 days!

    Sign up

    Join the Tech Talk
    Success! Thank you! Please check your email for further details.

    Please complete your information!

    Get our biweekly newsletter

    Sign up for Infrastructure as a Newsletter.

    Hollie's Hub for Good

    Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

    Become a contributor

    Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

    Welcome to the developer cloud

    DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

    Learn more
    DigitalOcean Cloud Control Panel