Skip to content

Instantly share code, notes, and snippets.

@websmith
Created June 28, 2016 20:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save websmith/c1bc066431fab3b7eef4cb4b917558d7 to your computer and use it in GitHub Desktop.
Save websmith/c1bc066431fab3b7eef4cb4b917558d7 to your computer and use it in GitHub Desktop.
<form>
<label style="font-weight: bold; padding: 15px 0px;" for="slider">Number of guests</label>
<input type="range" name="slider" id="slider" data-highlight="true" min="50" max="1000" value="50">
<fieldset data-role="control-group" id="cuisine-choices">
<legend style="font-weight: bold; padding: 15px 0px;">Choose your cuisine</legend>
<input type="radio" name="cuisine-choice" id="cuisine-choice-cont" value="15" checked="checked" />
<label for="cuisine-choice-cont">Continental</label>
<input type="radio" name="cuisine-choice" id="cuisine-choice-mex" value="12" /><label for="cuisine-choice-mex">Mexican</label>
<input type="radio" name="cuisine-choice" id="cuisine-choice-ind" value="14" /><label for="cuisine-choice-ind">Indian</label>
</fieldset>
<p>
The approximate cost will be: <span style="font-weight: bold;"
id="totalCost"></span>
</p>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment