The type attribute specifies the media type of the linked document:.
The type
attribute specifies the Internet media type (formerly known as MIME type) of the linked document.
This attribute is only used if the href
attribute is set.
Note: This attribute is purely advisory.
<a type="media_type">
Value | Description |
---|---|
media_type | The Internet media type of the linked document. Look at IANA Media Types for a complete list of standard media types. |
Example:
HTML
<!DOCTYPE html>
<html>
<body>
<h1>The a type attribute</h1>
<p>
<a href="https://horje.com" type="text/html">Horje.com</a>
</p>
</body>
</html>
Type: | Html |
Category: | Web Tutorial |
Sub Category: | HTML Tag |
Uploaded by: | Admin |