Home  >  Article  >  Web Front-end  >  HTML Picture Tag

HTML Picture Tag

WBOY
WBOYOriginal
2024-09-04 16:28:23317browse

The front-end developers use HTML picture tag to specify more than one file source to be displayed on a web page depending upon the preference like viewport. This tag allows web developers in the responsive web pages to specify the multiple-image sources and select an image automatically depending upon the viewport so that the web page will be filled perfectly with the source. We can specify multiple sources in the picture tag, and the web page will load the image which satisfies the preference. The picture tag is introduced with HTML 5.

Syntax:

The picture tag in HTML contains two types of tags in it, the first type is which allows specifying the source of files, and the second is HTML Picture Tag tag which allows specifying an image to be displayed in case of a browser does not support the tag. The syntax of the tag is as below,

<picture>
<source .>
.
.
<source .>
<img  . alt="HTML Picture Tag" >
</source></source></picture>

The picture tag will always have a closing tag with the two types of tags in it, as mentioned. The tag will come multiple times depending upon the number of resources, and there will be only one HTML Picture Tag tag. The source and image tag will have different attributes that will determine the functionality of a picture tag.

Attributes of HTML Picture Tag

As mentioned, the picture tag holds the other two tags and HTML Picture Tag. The attributes applicable to these two tags will apply to the picture tag.

1. src

This attribute is used along with the HTML Picture Tag tag. This attribute allows specifying the path or URL of the image to be displayed. This field is required and needs to specified whenever a source tag is used. In this way, we can specify multiple sources for images.

2. srcset

This attribute can be used with or HTML Picture Tag tags and is new in HTML 5. This attribute is similar to the previous “src” attribute, but it allows us to define some more values. This attribute takes two values as input, first is the path or URL of a file, and second is either a width descriptor of an image like (100w) or a pixel density descriptor of an image like (3x); each is followed by w and x respectively.

3. media

This attribute is used along with the tag. This tag allows us to define the rules on which the image to be displayed. This attribute takes any media query as an input and applies the rule. The media query can be checking the viewport or device size or height, etc.

In this way, we can achieve a responsive design using this attribute and tag along with the tag.

4. sizes

This attribute can be used with and HTML Picture Tag tags. As the image will be displayed with default width, this attribute allows us to specify an image’s width explicitly depending upon the media condition. The media condition is a simple condition like “max-width: 800px” without any additional parameters. The picture tag will always have a closing tag with the two types of tags in it, as mentioned. The tag will come multiple times depending upon the number of resources, and there will be only one HTML Picture Tag tag. The source and image tag will have different attributes that will determine the functionality of a picture tag. The size attribute can accept more than one media condition like this. This is very useful in responsive web designing, where we can set the conditions and display images accordingly.

5. type

This attribute is used along with the tag. This attribute allows us to explicitly specify the MIME type of the file to be displayed.

Examples of HTML Picture Tag

HTML is used to give web developers the flexibility to define image resources. Below are the examples of HTML Picture Tag:

Example #1

Code:



<meta name="viewport" content="width = device-width, initial-scale = 1.0">
<title>
picture tag in HTML
</title>
<style>
.results {
border : green 1px solid;
background-color : aliceblue;
text-align : left;
padding-left : 20px;
height : 300px;
width : 95%;
}
.resultText {
font-size : 20px;
font-style : normal;
color : blue;
}
</style>


<div class="results">
<h2> picture tag in HTML </h2>
<span> Resize the browser to see the effect.. </span>
<div class="resultText">
<picture>
<source media="(min-width: 550px)" srcset="https://cdn.educba.com/triangle.png">
<source media="(min-width: 465px)" srcset="https://cdn.educba.com/rectangle.png">
<img src="HTML%20Picture%20Tag.png" alt="HTML Picture Tag"   style="max-width:90%">
</source></source></picture>
</div>
</div>

Output:

Here we have three images with different resolutions.

HTML Picture Tag

In code, we have specified the min-width media query to display an image. After running the code, try to resize the browser size, and different images will be displayed depending on the width.

For Width Greater than 550 px:

HTML Picture Tag

For Width Greater than 465 px:

HTML Picture Tag

For Other Cases, i.e. width less than 465px:

HTML Picture Tag

Note, the outer border of the images clarifies the resolution of images. In most of the cases, all these images will be the same but with different resolutions.

Example #2

Code:



<meta name="viewport" content="width = device-width, initial-scale = 1.0">
<title>
picture tag in HTML
</title>
<style>
.results {
border : green 1px solid;
background-color : aliceblue;
text-align : left;
padding-left : 20px;
height : 300px;
width : 95%;
}
.resultText {
font-size : 20px;
font-style : normal;
color : blue;
}
.img {
max-width: 100%;
}
</style>


<div class="results">
<h2> picture tag in HTML </h2>
<span> Resize the browser to see the effect.. </span>
<div class="resultText">
<picture>
<source media="(min-width: 550px)" srcset="https://cdn.educba.com/triangle.png">
<source media="(min-width: 465px)" srcset="https://cdn.educba.com/rectangle.png">
<img src="HTML%20Picture%20Tag.png" alt="HTML Picture Tag" srcset="https://cdn.educba.com/HTML Picture Tag.png 2000w" sizes="900vw"   style="max-width:90%">
</source></source></picture>
</div>
</div>

Output:

HTML Picture Tag

Here, we have used the attribute size with the HTML Picture Tag tag. The maximum width of an image is limited by using CSS first, but these sizes attribute, along with srcset, forces to use the width depending on the size specified in terms of the viewport.

Conclusion

Web developers use HTML picture tag in responsive web page designing. This tag consists of two child tags source and img. Using different attributes available for these tags makes it possible to display images dynamically depending on the conditions.

The above is the detailed content of HTML Picture Tag. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:Select Tag in HTMLNext article:Select Tag in HTML