Frame set In HTML
December 12, 2017In frame set there is rows and cols you see in picture on left side all the links are open in right side of frame .It is possible by giving the frame name(tframe) .In link page you can use the attribute (target="tframe") in anchor tag u can see that (search) how to link in html.(on my website )
<html>
<frameset rows="15%, *">
<frame src="web page/heading.html">
<frameset cols="20%,*">
<frame src="index.html">
<frame name="tframe">
</frameset>
</html>
0 comments