CodeLab
Tutorials For Everyone
Run
<!DOCTYPE html> <html> <head> <title>HTML Form Checkbox Control Example</title> </head> <body> <h3>HTML Form Checkbox Control Example</h3> Please select your skills from the below list provided. <form action='/form-submit/'> <input type="checkbox" id="html" name="choice-1" value="HTML Language"> <label for="choice-1"> HTML Language</label><br> <input type="checkbox" id="css" name="choice-2" value="CSS Language"> <label for="choice-2"> CSS Language</label><br> <input type="checkbox" id="sass" name="choice-3" value="SASS Programming"> <label for="choice-3"> SASS Programming</label><br> <input type="checkbox" id="php" name="choice-4" value="PHP Programming"> <label for="choice-4"> PHP Programming</label><br> <input type="submit" id="submit" value="Submit Your Choices"> </form> </body> </html>