HTML Frames
HTML Frames
Vey Useful
It Defines Following:
<html>
<body>
<h4> books </h4>
books list are as under
<pre>
1. visual basic <br>
2. Web programming <br>
3. High Level Programming <br>
4. Java
</pre>
</body>
<html>
Comprehensive Example
Contact.html
<html>
<body>
<h4> contact us </h4>
feel free to contact us regarding an query about net
web:www.uaf.edu.pk <br>
email:[email protected] <br>
mob:0092-0300-46574478
</body>
<html>
Comprehensive Example
Main.html
<html>
<body>
<h3> welcome to online book </h3>
online book shop provides you the facility to purchase published books
on a variety of topic. You can purchase the books on your credit card.
</body>
</html>
Comprehensive Example
menu.html
<html>
<body>
<a href="main.html" target="main"> main </a> <br>
<a href="books.html" target="main"> books </a> <br>
<a href="contact.html" target="main"> contact us </a>
</body>
Comprehensive Example
top.html
<html>
<body>
<h3>
Computer Science Department </h3> <br>
<h5>University of Agriculture Faisalabad </h5>
</body>
</html>
Comprehensive Example
frame.html:
<frameset rows="20%,80%">
<frame src="top.html" name="top">
<frameset cols="20%,80%">
<frame src="menu.html" name="left">
<frame src="main.html" name="main">
</frameset>
</frameset>
Preview