What is the significance of the SRC attribute of the tag?
Answers
Answered by
3
The required src attribute specifies the URL of the image. Note: When a web page loads; it is the browser, at that moment, that gets the image from a web server and inserts it into the page.✔✔✔☺✌
Answered by
1
The significances of the SRC attribute of the <FRAME> tag are as follows:
The HTML < frame > src attribute sets the URL document used in the frame to display.
Values attributes:
- It contains a single URL value specifying the document source.
- The value of the possible URL is: absolute URL: it indicates a different site.
- HTML5 doesn't support the Frame tag.
Example:
<!DOCTYPE html>
<html>
<frameset cols="25%,*,25%">
<frame src="frame_x.htm">
<frame src="frame_y.htm">
<frame src="frame_z.htm">
</frameset>
</html>
Similar questions