Friday 31 May 2013

Html example program



Login Page.Html

<html>
 <head>
  <title> LOGIN </title>
 </head>

 <body bgcolor="pink">
 <div height="100%" width="100%" style="padding: 60px 100px 100px 80px">
 <form action="" >
<table align="center">
<tr>
<td><h3>Login Id</td>
<td><input type="text" ></td>
</tr><tr></tr><tr></tr>

<tr>
<td><h3>Password</td>
<td><input type="password"></td>
</tr><tr></tr><tr></tr>
</table>
<center>
<h2> <input type="submit" value="SUBMIT">
  <input type="submit" value="RESET">
</h2>
  </form>
</div>
  
 </body>
</center>
</html>

Top Frame.Html

<html>
 <head>
  <title> Top Frame</title>

 </head>
 <body style="padding:1px;margin:1px" bgcolor="pink">
 <table border="1" width="100%" height="100%">
<tr>
<th width="8%"><img src="logo.gif" height="55"/></th>
<th colspan="4"><h1>Welcome to Engineering Books Site</h1></th>
</tr>
     <tr>
<th><a href="home.html" target="targetframe">Home</a></th>
<th><a href="login.html" target="targetframe">Login</a></th>
<th><a href="registration.html" target="targetframe">Registration</a></th>
     <th><a href="catalogue.html" target="targetframe">Catalogue</a></th>
<th><a href="cart.html" target="targetframe">Cart</a></th>
</tr>
 </table>
  
 </body>
</html>

Department.Html

<html>
 <head>
  <title> DEPARTMENTS</title>

 </head>

 <body style="padding:30px 20px 20px 20px " bgcolor="pink">
  <a href="cse.html" target="targetframe">CSE</a><br><br><br>
  <a href="ece.html" target="targetframe">ECE</a><br><br><br>
  <a href="it.html" target="targetframe">IT</a><br><br><br>
  <a href="aero.html" target="targetframe">AERO</a>
  
 </body>
</html>

Homepage.Html

<html>
 <head>
  <title> HOME </title>
 </head>

 <body bgcolor="green">
   <p><h2><b>
Welcome to the books website. Here we are offering the books for the Graduate courses of Engineering. 
</b><h2> </p>
<p> Before you continue, with the website please register with the website. Thank You. </p>  
 </body>
</html>


0 comments:

Post a Comment