6.Create a help file as follows using frameset concept
6.Create a help file as follows :
![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjYEL7c1qRvpGtecMqZpsi3HMFFLxppQbeP28E-uKlFne-usfGgsJgbGJkLbHtkuMNZn5gCfyDEg-s2DlEpKdt8Wo27oq73Zc3WuamTA59YmdInXMEJXaa_aZMtvU6WAz7NQFamdU9nNSs/s640/5.JPG)
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:-
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:-
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 formations2.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
Post a Comment