Note: While there is no disabled
attribute in the HTML standard, there is a disabled
attribute on the HTMLLinkElement
DOM object.
The use of disabled
as an HTML attribute is non-standard and only used by some Microsoft browsers. Do not use it. To achieve a similar effect, use one of the following techniques:
disabled
attribute has been added directly to the element on the page, do not include the <link>
element instead;disabled
property of the DOM object via scripting.This attribute indicates the language of the linked resource. It is purely advisory. Allowed values are determined by BCP47 for HTML5 and by RFC1766 for HTML 4. Use this attribute only if the
href
attribute is present.
stylesheet
, and the href attribute is set to the URL of an external style sheet to format the page. WebTV also supports the use of the value next
for rel to preload the next page in a document series.The value of this attribute shows the relationship of the current document to the linked document, as defined by the
href
attribute. The attribute thus defines the reverse relationship compared to the value of the rel attribute. Link types values for the attribute are similar to the possible values for
rel
.
rel
attribute with the opposite link types values, e.g. made should be replaced by author. Also this attribute doesn't mean revision and must not be used with a version number, which is unfortunately the case on numerous sites.
This attribute defines the sizes of the icons for visual media contained in the resource. It must be present only if the
rel
contains the icon link types value. It may have the following values:
sizes
contains only one entry. Among the major browsers, only the Apple's ICNS format allows the storage of multiple icons, and this format is only supported in WebKit.