Search This Blog

Showing posts with label HTML Frameset Tags. Show all posts
Showing posts with label HTML Frameset Tags. Show all posts

HTML Frameset Tag Example

HTML Frameset Tag Example :
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com Frameset Tag Example </title>
</head>
<frameset rows="10%,75%,15%">
<frame src="">
<frame src="link\link_frame.html">
<frame src="">
</frameset>
</html>
II File link_frame.html
<!doctype html>
<html>
<head>
<title> www.kub4u.blogsopt.com </title>
</head>
<h2> Frame Tag Example </h2>
</html>
OUTPUT
HTML Frameset Tag Example

HTML Frameset Tag With 4 Part Example

HTML Frameset Tag With 4 Part Example :
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com Frameset Tag With 4 Part Example </title>
</head>
<frameset rows="50%,50%">
<frameset cols="50%,50%">
<frame src="link\link_frame.html">
<frame src="">
</frameset>
<frameset cols="50%,50%">
<frame src="">
<frame src="">
</frameset>
</frameset>
</html>
II File link_frame.html
<!doctype html>
<html>
<head>
<title> www.kub4u.blogsopt.com </title>
</head>
<h2> Frame Tag Example </h2>
</html>
OUTPUT
HTML Frameset Tag With 4 Part Example

HTML Frameset Tag With Cols Example

HTML Frameset Tag With Cols Example :
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com Frameset Tag With Cols Example </title>
</head>
<frameset cols="50%,50%">
<frame src="link\link_frame.html">
<frame src="">
</frameset>
</html>
II File link_frame.html
<!doctype html>
<html>
<head>
<title> www.kub4u.blogsopt.com </title>
</head>
<h2> Frame Tag Example </h2>
</html>
OUTPUT
HTML Frameset Tag With Cols Example

HTML Frameset Tag With Rows Example

HTML Frameset Tag With Rows Example :
<!doctype html>
<html>
<head>
<title> www.kod4u.blogspot.com Frameset Tag With Rows Example  </title>
</head>
<frameset rows="50%,50%">
<frame src="link\link_frame.html">
<frame src="">
</frameset>
</html>
II File link_frame.html
<!doctype html>
<html>
<head>
<title> www.kub4u.blogsopt.com </title>
</head>
<h2> Frame Tag Example </h2>
</html>
OUTPUT
HTML Frameset Tag With Rows Example