Ad Code

Verticle Frame Project with Source Code

Advertisements


A Complete HTML Vertical Frame Program.Below the HTML code.
Save The project as-> home.html
<html>
<head>
<title>Welcome to Home Page
</title>
</head>
<body bgcolor="pink">
<h1>Welcome To Home Page </h1>
This is Home Page,Describe short profile of your company.
<br>
<hr>
<a href=Import.html>Import Item</a>
<br>
<a href=export.html>Export Item</a>
<br>
<a href=contact.html>Contact Details</a>
<br>
</body>
</html>
<!--------------------------------------------------------->
Save The project as--> Import.html
<html>
<head>
</head>
<body bgcolor="pink">
<h1>
Welcome to Import Page.Select Import Item below List </h1>
<br>
<ol>
<li>Book
<li>Pencil
<li>Khata
</ol>
<hr>
<a href=Home.html>Home Page</a>
<br>
<a href=export.html>Export Item</a>
<br>
<a href=contact.html>Contact Details</a>
<br>
</body>
</html>
<!-------------------------------------------------------->
File nameàExport.html
<head>
</head>
<body bgcolor="yellow">
<h1>Frame programming Export Page,</h1>
<h2><u>Import Item:
</u></h2>
<h4>
<ol>
<li>Computer Game
<li>Computer Software
<li>Mobile
<li>Others
</ol>
<a href=home.html>Home Page</a>
<br>
<a href=Import.html>Import Item</a>
<br>
<a href=contact.html>Contact Personal</a>
<br>
</body>
</html>
<!-------------------------------------------------------------->
Save The project as-> Contact.html
<html>
<head>
</head>
<body bgcolor="grey">
<h1>Frame programming Contact Page,</h1>
Name:-Learn Easy Webdesign<br>
Address-xyz<br>
Phone-+91 xxxxxxxx91<br>
India<br>
<hr>
<a href=home.html>Home Page</a>
<br>
<a href=Import.html>Import Item</a>
<br>
</body>
</html>
<!--------------------------------------------->
Save The project as-> verticle_frame.html
<html>
<title>Example of Vertical Frame</title>
<head>
<frameset cols="*,2*,3*">
<frame src="new.html">
<frame src="import.html">
<frame src="export.html">
</head>
</html>
 Output
Verticle Frame Project with Sourch Code
Download Link
Advertisements