Skip to content

Instantly share code, notes, and snippets.

@anaszen777
Created August 6, 2013 11:07
Show Gist options
  • Save anaszen777/6163601 to your computer and use it in GitHub Desktop.
Save anaszen777/6163601 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>Registration Form</title>
</head>
<body bgcolor="lightgreen">
<center>
<h1>Registration Form</h1>
<form>
<table border="20" >
<tr><td>Name</td><td><input type="text"></td></tr>
<tr><td>Password</td><td><input type="password"></td></tr>
<tr><td>Age</td><td><input type="text"></td></tr>
<tr><td>Sex</td><td><input type="radio">Male<input type="radio">Female<td></tr>
<tr><td>Hobbies</td><td><input type="checkbox">Cricket<input type="checkbox">Football<input type="checkbox">Basketball</td></tr>
<tr><td></td><td><input type="submit" value="Submit"> <input type="reset" value="Reset" ></td></tr>
</table>
</center>
</form>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment