Frame Tag in HTML | HTML Frame Tag
×

HTML FRAME (<frame>) Tag

2392

HTML FRAME <frame> tag is used to divide a webpage into multiple sections or frames within a <frameset>. Each frame can contain different web pages. Every individual <frame> in a <frameset> use different attributes, like scrolling, border, the ability to resize, etc.

This tag has been removed in HTML5 and it should not be used anymore. You can use HTML <iframe> tag  instead of this. It is not used by the modern web page of HTML because of its required Start and end tag.

As it always comes with <frameset> tag so there is no need to use <body> Tag for this.

Program:

<!DOCTYPE html>
<html>
<head>
<title>Frame tag</title>
</head>
<frameset cols="20%,30%,50%">
<frame src="f1.html">
<frame src="f2.html">
<frame src="f3.html">
</frameset>
</html>

Output:




Best WordPress Hosting


Share:


Discount Coupons

Get a .COM for just $6.98

Secure Domain for a Mini Price



Leave a Reply


Comments
    Waiting for your comments