Name The Tag That Is Used To Put HTML Documents Into Frames. Also, Write Its Coding.
Answers
Answered by
14
The frameset tag allows you to put HTML Documents into frames.
Ex:
<html>
<body>
<frameset rows="100, 100" cols="300,300">
<frame src="web1.html" name="Source">
<frame src="web2.html" name="Source1">
<frame src="web3.html" name="Source2">
<frame src="web4.html" name="Source4">
</frameset>
</body>
</html>
NOTE: It is a deprecated tag. My suggestion is to use iframes.
<!Hope this helps!-->
Ex:
<html>
<body>
<frameset rows="100, 100" cols="300,300">
<frame src="web1.html" name="Source">
<frame src="web2.html" name="Source1">
<frame src="web3.html" name="Source2">
<frame src="web4.html" name="Source4">
</frameset>
</body>
</html>
NOTE: It is a deprecated tag. My suggestion is to use iframes.
<!Hope this helps!-->
siddhartharao77:
:-)
Answered by
2
Explanation:
Hey Mate.......
Creating Frames: Instead of using body tag, use frameset tag in HTML to use frames in web browser. But this Tag is deprecated in HTML 5. The frameset tag is used to define how to divide the browser. Each frame is indicated by frame tag and it basically defines which HTML document shall open into the frame.
hope it's helpful to you.......
mark as brainliest.......
Similar questions
English,
7 months ago
Business Studies,
7 months ago
Math,
7 months ago
English,
1 year ago
English,
1 year ago