Horje
What is HTML media Attribute

Definition and Usage

The media attribute specifies what media/device the linked document is optimized for.

This attribute is used to specify that the target URL is designed for special devices (like iPhone) , speech or print media.

This attribute can accept several values.


Applies to

The media attribute can be used on the following elements:

Elements Attribute
<a> media
<area> media
<link> media
<source> media
<style> media

Browser Support

The media attribute has the following browser support for each element.


How to add A link with a media attribute

A Example.
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h1>The a media attribute</h1>

<p>
<a href="att_a_media.asp?output=print" media="print and (resolution:300dpi)">Open media attribute page for print</a>
</p>

</body>
</html>

Output should be:

How to add A link with a media attribute

How to add An image map, with a clickable area

Area Example.
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h1>The area media 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="sun.htm" media="screen and (min-color-index:256)">
</map>

</body>
</html>

Output should be:

How to add An image map, with a clickable area

How to add Two different style sheets for two different media types (screen and print)

Link Example.
index.html
Example: HTML
<!DOCTYPE html>
<html>
<head>
  <link rel="stylesheet" type="text/css" href="https://www.w3schools.com/tags/demo_screen.css">
  <link rel="stylesheet" type="text/css" href="https://www.w3schools.com/tags/demo_print.css" media="print">
</head>
<body>

<h1>Horje Example</h1>
<p><a href="tryhtml_link_media.htm" target="_blank">Click here</a> to open this page in a new window (without the tryit part).</p>
<p>If you print this page, or open it in print preview, you will see that it is styled with the media="print" stylesheet. The "print" stylesheet contains black text on white background.</p>

</body>
</html>

Output should be:

How to add Two different style sheets for two different media types (screen and print)

How to Use of the media attribute

Source Example.
index.html
Example: HTML
<picture>
  <source media="(min-width: 650px)" srcset="https://horje.com/avatar.png">
  <source media="(min-width: 465px)" srcset="https://horje.com/avatar.png">
  <img src="https://horje.com/avatar.png" alt="Flowers" style="width:auto;">
</picture>

Output should be:

How to Use of the media attribute

How to add Specify the style to use for print

Style Example.
index.html
Example: HTML
<style>
h1 {color:#FF0000;}
p {color:#0000FF;}
body {background-color:#FFEFD6;}
</style>

Output should be:

How to add Specify the style to use for print




html media attribute

Related Articles
What is HTML accept Attribute HTML Input HTML Attribute
What is HTML accept-charset Attribute HTML Attribute
What is HTML accesskey Attribute HTML Attribute
What is HTML action Attribute HTML Attribute
What is HTML alt Attribute HTML Attribute
What is HTML async Attribute HTML Attribute
What is HTML autocomplete Attribute in HTML HTML Attribute
What is HTML autofocus Attribute HTML Attribute
What is HTML autoplay Attribute HTML Attribute
What is HTML charset Attribute HTML Attribute
What is HTML checked Attribute HTML Attribute
What is HTML cite Attribute HTML Attribute
What is HTML class Attribute HTML Attribute
What is HTML cols Attribute HTML Attribute
What is HTML colspan Attribute HTML Attribute
What is HTML content Attribute HTML Attribute
What is HTML contenteditable Attribute HTML Attribute
What is HTML controls Attribute HTML Attribute
What is HTML coords Attribute HTML Attribute
What is HTML data Attribute HTML Attribute
What is HTML data-* Attribute HTML Attribute
What is HTML datetime Attribute HTML Attribute
What is HTML controls Attribute HTML Attribute
What is HTML default Attribute HTML Attribute
What is HTML defer Attribute HTML Attribute
What is HTML dir Attribute HTML Attribute
What is HTML dirname Attribute HTML Attribute
What is HTML disabled Attribute HTML Attribute
What is HTML download Attribute HTML Attribute
What is HTML draggable Attribute HTML Attribute
What is HTML enctype Attribute HTML Attribute
What is HTML enterkeyhint Attribute HTML Attribute
What is HTML for Attribute HTML Attribute
What is HTML form Attribute HTML Attribute
What is HTML formaction Attribute HTML Attribute
What is HTML headers Attribute HTML Attribute
What is HTML height Attribute HTML Attribute
What is HTML hidden Attribute HTML Attribute
What is HTML high Attribute HTML Attribute
What is HTML href Attribute HTML Attribute
What is HTML hreflang Attribute HTML Attribute
What is HTML http-equiv Attribute HTML Attribute
What is HTML id Attribute HTML Attribute
What is HTML inert Attribute HTML Attribute
What is HTML inputmode Attribute HTML Attribute
What is HTML ismap Attribute HTML Attribute
What is HTML kind Attribute HTML Attribute
What is HTML label Attribute HTML Attribute
What is HTML lang Attribute HTML Attribute
What is HTML list Attribute HTML Attribute
What is HTML loop Attribute HTML Attribute
What is HTML low Attribute HTML Attribute
What is HTML max Attribute HTML Attribute
What is HTML maxlength Attribute HTML Attribute
What is HTML media Attribute HTML Attribute
What is HTML method Attribute HTML Attribute
What is HTML min Attribute HTML Attribute
What is HTML multiple Attribute HTML Attribute
What is HTML muted Attribute HTML Attribute
What is HTML name Attribute HTML Attribute
What is HTML novalidate Attribute HTML Attribute
What is HTML onabort Attribute HTML Attribute
What is HTML onafterprint Attribute HTML Attribute
What is HTML onbeforeprint Attribute HTML Attribute
What is HTML onbeforeunload Attribute HTML Attribute
What is HTML onblur Attribute HTML Attribute
What is HTML oncanplay Attribute HTML Attribute
What is HTML oncanplaythrough Attribute HTML Attribute
What is HTML onchange Attribute HTML Attribute
What is HTML onclick Attribute HTML Attribute
What is HTML oncontextmenu Attribute HTML Attribute
What is HTML oncopy Attribute HTML Attribute
What is HTML oncuechange Attribute HTML Attribute
What is HTML oncut Attribute HTML Attribute
What is HTML ondblclick Attribute HTML Attribute
What is HTML ondrag Attribute HTML Attribute
What is HTML ondragend Attribute HTML Attribute
What is HTML ondragenter Attribute HTML Attribute
What is HTML ondragleave Attribute HTML Attribute
What is HTML ondragover Attribute HTML Attribute
How to add HTML ondragstart Attribute HTML Attribute
What is HTML ondrop Attribute HTML Attribute
What is HTML ondurationchange Attribute HTML Attribute
What is HTML onemptied Attribute HTML Attribute
What is HTML onended Attribute HTML Attribute
What is HTML onerror Attribute HTML Attribute
What is HTML onfocus Attribute HTML Attribute
What is HTML onhashchange Attribute HTML Attribute
What is HTML oninput Attribute HTML Attribute
What is HTML oninvalid Attribute HTML Attribute
What is HTML onkeydown Attribute HTML Attribute
What is HTML onkeypress Attribute HTML Attribute
What is HTML onkeyup Attribute HTML Attribute
What is HTML onload Attribute HTML Attribute
What is HTML onloadeddata Attribute HTML Attribute
What is HTML onloadedmetadata Attribute HTML Attribute
What is HTML onloadstart Attribute HTML Attribute
What is HTML onmousedown Attribute HTML Attribute
What is HTML onmousemove Attribute HTML Attribute
What is HTML onmouseout Attribute HTML Attribute
What is HTML onmouseover Attribute HTML Attribute
What is HTML onmouseup Attribute HTML Attribute
What is HTML onmousewheel Attribute HTML Attribute
What is HTML onoffline Attribute HTML Attribute
What is HTML ononline Attribute HTML Attribute
What is HTML onpageshow Attribute HTML Attribute
What is HTML onpaste Attribute HTML Attribute
What is HTML onpause Attribute HTML Attribute
What is HTML onplay Attribute HTML Attribute
What is HTML onplaying Attribute HTML Attribute
What is HTML onprogress Attribute HTML Attribute
What is HTML onratechange Attribute HTML Attribute
What is HTML onreset Attribute HTML Attribute
What is HTML onresize Attribute HTML Attribute
What is HTML onscroll Attribute HTML Attribute
What is HTML onsearch Attribute HTML Attribute
What is HTML onseeked Attribute HTML Attribute
What is HTML onseeking Attribute HTML Attribute
What is HTML onstalled Attribute HTML Attribute
What is HTML onsubmit Attribute HTML Attribute
What is HTML onsuspend Attribute HTML Attribute
What is HTML ontimeupdate Attribute HTML Attribute
What is HTML ontoggle Attribute HTML Attribute
What is HTML onunload Attribute HTML Attribute
What is HTML onvolumechange Attribute HTML Attribute
What is HTML onwaiting Attribute HTML Attribute
What is HTML onwheel Attribute HTML Attribute
What is HTML open Attribute HTML Attribute
What is HTML optimum Attribute HTML Attribute
What is HTML pattern Attribute HTML Attribute
What is HTML placeholder Attribute HTML Attribute
What is HTML popover Attribute HTML Attribute
What is HTML popovertarget Attribute HTML Attribute
What is HTML popovertargetaction Attribute HTML Attribute
What is HTML poster Attribute HTML Attribute
What is HTML preload Attribute HTML Attribute
What is HTML readonly Attribute HTML Attribute
What is HTML rel Attribute HTML Attribute
What is HTML required Attribute HTML Attribute
What is HTML reversed Attribute HTML Attribute
What is HTML rows Attribute HTML Attribute
What is HTML rowspan Attribute HTML Attribute
What is HTML sandbox Attribute HTML Attribute
What is HTML scope Attribute HTML Attribute
What is HTML selected Attribute HTML Attribute
What is HTML shape Attribute HTML Attribute
What is HTML size Attribute HTML Attribute
What is HTML sizes Attribute HTML Attribute
What is HTML span Attribute HTML Attribute
What is HTML spellcheck Attribute HTML Attribute
What is HTML src Attribute HTML Attribute
What is HTML srcdoc Attribute HTML Attribute
What is HTML srclang Attribute HTML Attribute
What is HTML <source> srcset Attribute HTML Attribute
What is HTML start Attribute HTML Attribute
What is HTML step Attribute HTML Attribute
What is HTML style Attribute HTML Attribute
What is HTML tabindex Attribute HTML Attribute
What is HTML target Attribute HTML Attribute
What is HTML title Attribute HTML Attribute
What is HTML translate Attribute HTML Attribute
What is HTML type Attribute HTML Attribute
What is HTML usemap Attribute HTML Attribute
What is HTML value Attribute HTML Attribute
What is HTML width Attribute HTML Attribute
What is HTML wrap Attribute HTML Attribute

Single Articles
How to add A link with a media attributeHTML Attribute
How to add An image map, with a clickable areaHTML Attribute
How to add Two different style sheets for two different media types (screen and print)HTML Attribute
How to Use of the media attributeHTML Attribute
How to add Specify the style to use for printHTML Attribute

Read Full:
HTML Attribute
Type:
Develop
Category:
Web Tutorial
Sub Category:
HTML Attribute
Uploaded:
3 months ago
Uploaded by:
Admin
Views:
63


Reffered: https://www.w3schools.com/tags/att_media.asp

Share on: