Skip to content

Instantly share code, notes, and snippets.

@derans
Created June 12, 2012 03:05
Show Gist options
  • Save derans/2914607 to your computer and use it in GitHub Desktop.
Save derans/2914607 to your computer and use it in GitHub Desktop.
Classification_html_markup_example
<fieldset id="classification_radio_wrapper">
<legend>Classification</legend>
<input type="radio" name="classification" id="Freshman" value="Freshman" checked />
<label for="Freshman" class="Freshman">Freshman</label>
<input type="radio" name="classification" id="Sophomore" value="Sophomore" />
<label for="Sophomore" class="Sophomore">Sophomore</label>
<input type="radio" name="classification" id="Junior" value="Junior" />
<label for="Junior" class="Junior">Junior</label>
<input type="radio" name="classification" id="Senior" value="Senior" />
<label for="Senior" class="Senior">Senior</label>
</fieldset>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment