Last active
March 10, 2016 22:26
-
-
Save brs14ku/4f3a983b9e9f576cf72d to your computer and use it in GitHub Desktop.
Web 128 Class 2 Spring 2016
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form> | |
First name:<br> | |
<input type="text" name="firstname"><br> | |
Last name:<br> | |
<input type="text" name="lastname"> | |
<input type="radio" name="gender" value="male" checked> Male<br> | |
<input type="radio" name="gender" value="female"> Female<br> | |
<input type="radio" name="gender" value="other"> Other | |
<input type="submit" value="Submit"> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment