Resources Menu


Quick Reference Sheets for Webmasters

Quick Reference sheets are packed full of useful information for all webmasters.

HTML Reference Sheet

HTML Tag List


<link>
The LINK tag defines a relationship between linked documents.

Attributes
charset
Value(s) : charset
Specifies the character encoding of the link. Default character encoding is ISO-8559-1.
href
Value(s) : URL
This attribute defines the target link of the resource.
hreflang
Value(s) : language code
Specifies the base language to use for the target URL.
media
Value(s) : all | braille | print | projection | screen | speech
Sets the type of media for specific user agents or devices.
rel
Value(s) : alternate | appendix | bookmark | chapter | contents | copyright | glossary | help | home | index | next | prev | section | start | stylesheet | subsection
This sets the relationship between the current page and the targetted link
rev
Value(s) : same as rel
Defines the relationship between the targetted link and the current document.
target
Value(s) : _blank | _self | _top | _parent
This defines the target location of where to open the URL.
type
Value(s) : mime type
Sets the MIME type of the target link.
example:
<link rel="stylesheet" type="text/css" href="css/style.css">