Frameset tag ...
1) "A Frameset tag is used to define how to divide a browser window into a multiple frame called as Frameset tag ..."
2) It is a container tag ...
3) It replace a 'BODY tag' in a frameset document...
# Attributes of frameset tag ...👇👇
1 ) Cols { Column } :-
" A column attribute of frameset tag which divide browser into a vertical direction called cols ."
2 ) Rows :-
" A Row attribute of frameset tag which divide browser into a Horizontal direction called rows."
*...Frame Tag...*
1) " A Frame tag is used to divide a browser window in separate part called frame tag."
2) The number of HTML document arrange in a single browser window or several independent area create in a single web browser called as window frame ...
3) Frame tag written in frameset tag ...
#Attributes of Frame tag ...👇👇
1 ) SRC :-
" The SRC attribute is used specify HTML page that you want to display in frame ."
2 ) NAME :-
" The name attribute asign a name to the frame for targetting or linking purpose."
3 ) BORDER :-
" The Border attribute of Frame tag create the border arround the frame ."
4 ) BORDER COLOR :-
" The Border color aatribute of Frame tag change the border color."
5 ) MARGINHElGHT :-
" The Margin-height attribute of Frame tag to specify the height of the margins in a frame or iframe. "
6 ) MARGINWIDTH :-
" The margin-width attribute specifies the width between the content and the left and right sides of the frame, in pixels."
7 ) SCROLLING :-
" The scrolling attribute specifies whether or not to display scrollbars in a <frame>. By default, scrollbars appear in a <frame> if the content is larger than the <frame>. "
8 ) NORESIZE :-
" The no-resize attribute specifies that a <frame> element cannot be resized by the user. By default, each <frame> in a <frameset> can be resized by dragging the border between the frames. However, this attribute locks the size of a frame."
EX... :- Write a HTML program to divide browser window into rows and columns ...
1 )
Ans .. :-
<HTML>
<HEAD>
<TITLE> HTML CODE< /TITLE>
</HEAD>
<Frameset rows="33%,33%,34%" >
<Frame src="F1.HTML">
<Frame src="F2.HTML">
<Frameset cols="50%,50%" >
<Frame src="F3.HTML">
<Frame src="F4.HTML">
</Frameset>
</Frameset>
</HTML>
## Thank you 🙏🙏