html radio label code example

Example 1: html radio label clickable

<!-- Wrap elements without giving them each an ID -->
<label>
   <input type="radio" name="mode" value="create">
   <i>create table</i>
</label>

<!--You can use <label> elements, which are designed to do exactly that-->
<input type="radio" id="radCreateMode" name="mode" value="create" />
<label for="radCreateMode"><i>create table</i></label>

Example 2: radio buttons

<input type="radio" id="male" name="gender" value="male">
<label for="male">Male</label><br>
<input type="radio" id="female" name="gender" value="female">
<label for="female">Female</label><br>
<input type="radio" id="other" name="gender" value="other">
<label for="other">Other</label>

Tags:

Css Example