
i want a registration page in html with good background

<html> <center> <h2>Register Form</h2> </center> <body bgcolor="#EBDDE2"> <form name="form" method="post" onsubmit="return validate();"> <center> <table> <tr><td> Name</td><td><input type="text" name="name"></td></tr> <tr><td> Password</td><td><input type="password" name="pass"></td></tr> <tr><td> Address</td><td><input type="text" name="address"></td></tr> <tr><td> Contact No</td><td><input type="text" name="contactNo"></td></tr> <tr><td> Email</td><td><input type="text" name="email"></td></tr> <tr><td><input type="submit" value="Save" name="button1"></td><td><input type="reset" value="Reset" name="button2"></td></tr> </table> </center> </form> </body> </html>