Friday 24 January 2014

Frame Tag usage in Html??

/* frame.html*/
<html>
<head>
<title> Frame </title>
</head>

<frameset cols="25%,*,25%">
<frame src="A&V link.html" >
<frame src="abbr.html" >
<frame src="Bg_Red.html">
</frameset>

</html>

/*bg_red.html*/
<html>
<head>
<title> Hello Html...!! </title>
</head>
<body bgcolor=red>
</body>
</html>

/*abbr.html*/
<html>
<head>
<title> abbreviation </title>
</head>
<body>
<h1><abbr title="Internet Protocol and Web technology"> IP/Web </abbr></h1>
</body>
</html>

/*a&v link */
<html>
<head>
<title> A&V link </title>
<body link="green" vlink="violet">
<h1> Exciting
<a href="http://www.wallpaper.com" target="_blank"> Wallpaper </a></h1>
</body>
</html>







No comments:

Post a Comment