Skip to content

Instantly share code, notes, and snippets.

@brs14ku
Last active March 10, 2016 22:26
Show Gist options
  • Save brs14ku/4f3a983b9e9f576cf72d to your computer and use it in GitHub Desktop.
Save brs14ku/4f3a983b9e9f576cf72d to your computer and use it in GitHub Desktop.
Web 128 Class 2 Spring 2016
<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