Frame Tag
1)Creating Vertical Columns
To create vertical columns a set of four vertical columns we are need to use the frameset element with the cols attribute The cols attribute is used to define the number and the size of columns the frameset define will contain. its four files to display its we need four frames. To create four frame we needed to assign four comma-separated values to the cols attribute.
Creating Vertical Columns
Example :-
<!Doctype html>
<html>
<frameset cols="20%, 30%, 25%, 25%">
<frame src="Firstframe.html">
<frame src="Secondframe.html">
<frame src="Thirdframe.html">
<frame src="Fourth Frame.html">
</frameset>
</html>
No comments:
Post a Comment