mirror of
https://github.com/atapas/html-tips-tricks.git
synced 2024-11-16 00:38:26 +01:00
Added a Checkbox feature #38
This commit is contained in:
parent
f478ca2c9d
commit
ce8a7c9df1
1 changed files with 13 additions and 0 deletions
|
@ -64,6 +64,19 @@
|
|||
</form>
|
||||
</div>
|
||||
|
||||
<div class="box">
|
||||
<h2>Checkbox Languages Selection</h2>
|
||||
<form>
|
||||
<input type="checkbox" id="java" name="languages" value="Java">
|
||||
<label for="java"> Java</label><br>
|
||||
<input type="checkbox" id="javascript" name="languages" value="JavaScript">
|
||||
<label for="javascript"> JavaScript</label><br>
|
||||
<input type="checkbox" id="python" name="languages" value="Python">
|
||||
<label for="python"> Python</label><br>
|
||||
<input type="submit">
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="box">
|
||||
<h2>Regex validations</h2>
|
||||
<form>
|
||||
|
|
Loading…
Reference in a new issue