Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML media attribute

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The HTML media attribute is employed to specify the media or device the coupled document is optimized for. This attribute specifies that the target URL is designed for special devices like iPhone, speech, or print media. 

This attribute can accept several values.

Applicable: 

Example: HTML <a> media attribute 

html




<html>
 
<body>
    <h1>GeeksForGeeks</h1>
    <h2>
        HTML media Attribute
    </h2>
       media="print and (resolution:300dpi)">
        Click to open in the same tab
    </a>
    <br>
       target="_blank" media="print and (resolution:300dpi)">
        Click to open in a different tab
    </a>
</body>
</html>

Output: 
 

Example: HTML <source> media attribute 

html




<!DOCTYPE html>
<html>
<head>
    <meta name="viewport"
          content="width=device-width, initial-scale=1.0">
</head>
 
<body>
    <picture>
        <source media="(min-width: 600px)"
                srcset=
        <source media="(min-width: 400px)"
                srcset=
        <img src=
                                style="width:auto;">
    </picture>
 
</body>
</html>

Output: Change the browser size. 
 

 

 

Supported Browsers: The browsers supported by HTML media attribute are listed below: 

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Apple Safari
  • Opera

My Personal Notes arrow_drop_up
Last Updated : 10 May, 2023
Like Article
Save Article
Similar Reads
Related Tutorials