Horje

How to create HTML <a> type Attribute

The type attribute specifies the media type of the linked document:.

Definition and Usage

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.

Browser Support

Syntax

<a type="media_type">

Attribute Values

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.
index.html
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>

Output should be:

How to create HTML <a> type Attribute




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin