+ 1
what's the meaning of "src" and "jpg"
In HTML
5 ответов
+ 3
<body>
<img src="picture.jpg>
</body>
Inside the <body> tags, we open a new tag <img>
Since we want to add some parameters to it, we don't close it immediately but we tell the browser to fetch the SOURCE (src) and give a link where the image is located
.jpg is a file extension
Just like word document ends with .doc or .docx, your music files end with .mp3, images end with .jpg (and plenty others)
+ 7
.jpg is the extension of an image file
+ 3
Anhjje is right
<body>
Img src="picture.jpg"
</body>
Img src means it is an source of image
And. Jpg is for extension of the file
+ 2
Thnx a lot
+ 1
src is short of source
while jpg is an image extension