html frame tag

          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>


Creating Vertical Columns 

output :- 


Vertical column  tag use



READ MORE   :-


 css border bottom property

css box property

type of css

Comments

Popular posts from this blog

HTML Tag

CSS Text Color Explained with Syntax and HTML Examples

html script tag attributes

CSS text-emphasis-color Property

HTML Input Type Submit Syntax and Example

CSS Padding Property Explained

How to Display T Pattern in C with Star (*) – Step-by-Step