Open In App

HTML | <source> srcset Attribute

Last Updated : 19 Jul, 2022
Comments
Improve
Suggest changes
Like Article
Like
Report

The HTML srcset attribute is used to specifies the URL of an image to use in different situations. when <source> is used in <picture> it is required
Syntax: 
 

<source srcset="URL">


Attribute Values 
 

  • URL: It specifies the URL of image


Example: 
 

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=
"https://media.geeksforgeeks.org/wp-content/uploads/20190328185307/gfg28-300x83.png">

        <source media="(min-width: 400px)" 
                srcset=
"https://media.geeksforgeeks.org/wp-content/uploads/20190809013546/gfg_350X350-300x300.png">

        <img src=
"https://media.geeksforgeeks.org/wp-content/uploads/20190521140445/gfglogo2.png" 
             style="width:auto;">

    </picture>

</body>

</html>

Output: change the size of browser 
 


 


 


Supported Browsers:The browsers supported by HTML srcset Attribute are listed below 
 

  • Google Chrome 38
  • Firefox 38
  • Apple Safari 9
  • Opera 25
  • Edge 18


 


Next Article

Similar Reads