Pages

Wednesday 19 March 2014

A simple login page by using division tag in html.

      
 Please find the source code of the login page below.

Source code:


<html>
<body>
<div style="background-color:rgb(100,255,255);width:330px;height:65px; margin-left:500px;">
            <br/>
            <h3 style="text-align:center;color:black;"><b>Login</b></h3>
            </div>
            <div style="background-color:rgb(130,168,240);width:330px;height:230px;margin-left:500px;">
                <br/><br/>
                <center>
                <form action="/login1">
                <br/>
                 <table>
                 <tr><td><font color="black"><b>UserName</b></font></td>
                     <td><input type="text" name="password"/></td></tr>                  
                   <tr><td><font color="black"><b>Password</b></font></td>
                  <td><input type="password" name="password"></td></tr>
                  <tr><td/><td> <input type="submit" value="Login"/></td></tr>   
                       </table>
                </form>
                </center>
            </div>
            </body>
            </html>

No comments:

Post a Comment