CLOSE

Help Us Help You

This website and it's tutorials are only made possible with your support. Support money goes towards keeping our servers online and paying staff members.

Link Tag

Not to be confused with the anchor tag, the <link> tag is used to link items to the document (normally CSS style sheets).

<!DOCTYPE html>
<html>
    <head>
        <link rel="stylesheet" href="path to stylesheet">
    </head>
</html>

Attributes

  • href - Path to the file we want to link.
  • rel - Required. Defines relationship between current document and linked document.
    • alternate
    • archives
    • author
    • bookmark
    • external
    • first
    • help
    • icon
    • last
    • license
    • next
    • nofollow
    • noreferrer
    • pingback
    • prefetch
    • prev
    • search
    • sidebar
    • stylesheet
    • tag
    • up

Copyright 2016 Step By Step HTML. All Rights reserved.