Created
October 14, 2010 21:24
-
-
Save pkarl/627085 to your computer and use it in GitHub Desktop.
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 id="playform"> | |
<fieldset> | |
<legend>Contact Info:</legend> | |
Name: <input type="text" size="30" /><br /> | |
Email: <input type="text" size="30" /><br /> | |
Date of birth: <input type="text" size="10" /> | |
</fieldset> | |
<fieldset> | |
<legend>Computer Preferences:</legend> | |
OS type: <input type="radio" name="osx" /> OSX — <input type="radio" name="Win" /> Windows — <input type="radio" name="unix" /> Unix<br/> | |
Computer name: <input type="text" size="30" /><br /> | |
Computer type: <input type="radio" name="laptop" /> Laptop — <input type="radio" name="Desktop" /> Desktop | |
</fieldset> | |
<fieldset> | |
<legend>Clothing Style:</legend> | |
$ spent per month: <input type="text" size="10" /><br /> | |
Self-evaluation: <input type="radio" name="grungy" /> Grungy — <input type="radio" name="nerdy" /> Nerdy — <input type="radio" name="refined" /> Refined<br/> | |
</fieldset> | |
<fieldset> | |
<legend>Dining Options:</legend> | |
Chicken or Fish? <input type="radio" name="chix" /> Chicken — <input type="radio" name="Fish" /> Fish<br/> | |
</fieldset> | |
<input type="submit" value="submit my information"> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment