Created
June 28, 2016 20:09
-
-
Save websmith/c1bc066431fab3b7eef4cb4b917558d7 to your computer and use it in GitHub Desktop.
This file contains 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> | |
<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