Horje

How to add HTML <area> type Attribute

Use the type attribute to specify the MIME type of the target URL:

Definition and Usage

The type attribute specifies the Internet media type (formerly known as MIME type) of the target URL.

This attribute is only used if the href attribute is set.

Note: This attribute is purely advisory.

Browser Support

Syntax

<area 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 area type attribute</h1>

<p>Click on the sun to watch it closer:</p>

<img src="https://horje.com/avatar.png" width="145" height="126" alt="Planets" usemap="#planetmap">

<map name="planetmap">
  <area shape="rect" coords="0,0,82,126" alt="Sun" href="https://horje.com/avatar.png" type="image/gif">
</map>

</body>
</html>

Output should be:

How to add HTML <area> type Attribute




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