<html> <head> <title>form</title> </head> <body> <form> <table align="center"> <tr> <th colspan="2">Login here</th> </tr> <tr> <td>email:</td> <td><input type="text"/></td> </tr> <tr> <td>password :</td> <td><input type="text"/></td> </tr> <tr> <td></td> <td><input type="checkbox"/> Remember me </td> </tr> <tr> <td></td><!--This tag if i want to align it to right side or to the second column since here are two columns because two td tag is used inside the tr tag--> <td><input type="submit" value="sign in"/></td> </tr> </table> </form> </body> </html>