• Post category:HTML

What Does src Stand for in HTML?

What Does src Stand for in HTML?

An important attribute in the image tag is “SRC”. Because you need to specify the path of an image using the src attribute. What does src stand for in HTML? SRC stands for source in HTML, so we can give the source of an image in the “src” attribute. It is used to specify the URL of an image. We can also use the src attribute in the <video> tag. We give the path of the video we want to insert in the “SRC” attribute

Example :

<img width="90%" height="fit-content" src="sas.jpg">

Note :
we should also give the image extension like jpg, webp, jpeg in the “src” attribute.

Output:

what does src stand for in html

Leave a Reply