Wednesday 2 July 2014

HTML Frame!!


You can divided a Web page into two or more with HTML frames. Every part of page you can upload a page.
Even if you want you ccan use reload. If have more frame that's called frameset.
You must write frame tag in frameset "<frameset><frame></frame></frameset>".

Example:

<!DOCTYPE html>
<html>
<head>
<title>Online Webcoach Frame Tutorial </title>
</head>
<frameset rows=”200,100>
<frame src="http://onlinewebcoach.blogspot.com/" />
<frame src="http://muktotunes.blogspot.com/" />
<noframes>
 <body>
Unfortunately, your browser does not support this frame tag.
</body> 
</noframes>
</frameset>
</html>

Here, <frameset rows=”200,100> understanding to you the "http://onlinewebcoach.blogspot.com/" height 200px and "http://muktotunes.blogspot.com/" height 100px.

Frame isn't supprt on the HTML5. HTML% support only "Iframe".

No comments:

Post a Comment