simbolo checkbox en tabla en html

Solutions on MaxInterview for simbolo checkbox en tabla en html by the best coders in the world

showing results for - "simbolo checkbox en tabla en html"
Emiliano
13 Jul 2019
1<form id="demo"> 
2<p><input type="checkbox" name="chec[]" id="checkbox1" checked=""><label for="checkbox1">checkbox 1</label></p>
3<p><input type="checkbox" name="chec[]" id="checkbox2"><label for="checkbox2">checkbox 2</label></p>
4</fieldset>
5<fieldset> 
6<p><input type="radio" name="rad" id="radio1" checked=""><label for="radio1">botón de radio 1</label></p>
7<p><input type="radio" name="rad" id="radio2"><label for="radio2">botón de radio 2</label></p>
8</form>
9