6.Create a help file as follows using frameset concept

6.Create a help file as follows :



programs:- in this program u have to create two files 
1.sub program :using hyper links concept

<!doctype html>
<head>
<title>frames</title>
<style>    //style section is optional in this program
h1
{
color:red;
}
</style>
</head>
<body>
<h1 align="center" target="lab">contents</h1>       // here i'am using hyper links concept
<a href="lab1.html" target="lab">1.text formations </a><br>
<a href="lab2.html" target="lab">2.font formations </a><br>
<a href="lists.html" target="lab">3. lists</a><br>
<a href="frame2.html" target="lab">4.materials clacifications</a>
</body>

</html>

output:-

contents

1.text formations
2.font formations
3. lists
4.materials clacifications

2.program:-
using freameset concept

<!doctype html>
<head>
<html>
<title>frames</title>
</html>
<frameset cols="40%,*50%">
 <frame src="151.html">              //151.html is the 1st program name
<frame src="lab.html" name="lab">
</frameset>

</html>

output:-



Comments

Popular posts from this blog

2. Illustrate font variations in your HTML code.

jquery lab programs 1&2