What is HTML Frameset Tag? Syntax & Example
frameset tag in html with example
This can take value integer as parameter which basically denotes the value in pix
Syntax :
<frameset rows="50%,50%">
<frame src="top_1.html">
<frame src="bottom_2.html">
</frameset>
frameset tag in html with example
frameset tag in html with example
Step 1 ]
<!Doctype html>
- <!doctype html> always be the first line of any HTML document.
<!Doctype html>
- <!doctype html> always be the first line of any HTML document.
Step 2 ]
<html> and </html>
html is the root element.
<html> and </html>
html is the root element.
Step 3 ]
<body> and </body>
body is main content area.
All visible content inside to the <body> tag
<body> and </body>
body is main content area.
All visible content inside to the <body> tagStep 4]
frames layout
row= 1,2 :- frame layout two horizontal row.
cols=1,2 :- layout two vertical columns.
Step 5]
Step 5]
Close the </frameset> & html document.
frameset tag in html with example


Post a Comment