Skip to content

Instantly share code, notes, and snippets.

@dvnckr
Created July 22, 2012 09:13
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 dvnckr/3158989 to your computer and use it in GitHub Desktop.
Save dvnckr/3158989 to your computer and use it in GitHub Desktop.
Untitled
<form>
<p>
<fieldset> <legend>Case à cocher</legend>
<input type="checkbox" id="un" checked/><label for="un">Case à cocher 1</label><br/>
<input type="checkbox" id="deux"/><label for="deux">Case à cocher 2</label>
</fieldset>
<fieldset><legend>OPTION</legend>
<input type="radio" id="uno" name="choix" value="uno" checked/><label for="uno"> Choix un</label> <br/>
<input type="radio" id="dos" name="choix" value="dos"/><label for="dos"> Choix deux</label> <br/>
<input type="radio" id="tres" name="choix" value="tres"/><label for="tres"> Choix trois</label> <br/>
<input type="radio" id="cuatro" name="choix" value="cuatro"/><label for="cuatro"> Choix quatre</label></fieldset>
<fieldset><legend>DEROULANT</legend>
<select>
<optgroup label="VVV"></optgroup>
<option value="one">option une</option>
<option value="two" >option deux</option>
<optgroup label="WWW"></optgroup>
<option value="three">option trois</option>
<option value="four">option quatre</option></select><br/>
<select><optgroup></optgroup><option>test</option></select></fieldset>
<fieldset><legend>AUTRES</legend>
<input type="range" id="uno" name="choix" value="750" min="500" max="800"/><label for="uno"> Choix un</label> <br/>
<input type="number" id="dos" name="choix" value="340" min="10" max="800" step="200"/><label for="dos"> Choix un</label> <br/>
<input type="color" id="tres" name="choix" value="#24CF32"/><label for="tres"> Choix un</label> <br/>
<input type="datetime" id="cuatro" name="choix" /><label for="cuatro"> Choix un</label> <br/> </fieldset>
</p>
</form>
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"html"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment