Open In App

HTML | <a> type Attribute

The type attribute is used to specify the Internet media type of the linked document. It is used only when href attribute is set. 

Syntax:



<a type="media_type">

Attribute Values: It contains the value “media_type” which specify the Internet media type of the embedded file. 

Example: 






<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML a type Attribute
  </title>
</head>
 
<body>
    <p>Welcome to
        <a href="https://ide.geeksforgeeks.org/"
           type="text/html">
                GeeksforGeeks
            </a>
    </p>
</body>
 
</html>

Output:

  

Supported Browsers: The browser supported by HTML <a> type Attribute are listed below:

Article Tags :