Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCKTYPE html>
- <html>
- <head>
- <title>CheckBoxType</title>
- </head>
- <body>
- <h1><font color=green>Please check one of the following</font></h1>
- <fieldset>
- <legend><b>FORM 3</b></legend>
- <form name="form3" action="url" method="get">
- <p><font color=red>select country:</font></p>
- <input id="jordan" type="checkbox" name="country" checked/>
- <label for="jordan">Jordan</label>
- <br />
- <input id="yemen" type="checkbox" name="country" />
- <label for="yemen">Yemen</label>
- <br />
- <input id="qatar" type="checkbox" name="country"/>
- <label for="qatar">Qatar</label>
- <br />
- <input id="cameroon" type="checkbox" name="country"/>
- <label for="cameroon">Cameroon</label>
- <br />
- <input id="brazil" type="checkbox" name="country"/>
- <label for="brazil">Brazil</label>
- <br />
- <input id="ghana" type="checkbox" name="country"/>
- <label for="ghana">Ghana</label>
- <br />
- <input id="south africa" type="checkbox" name="country"/>
- <label for="south africa">South Africa</label>
- <br />
- <input disabled id="nigeria" type="checkbox" name="country"/>
- <label for="nigeria">Nigeria</label>
- <p><font color=blue>Select Language</font></p>
- <input type="checkbox" id="arabic" name="language" checked/>
- <label for="arabic">Arabic</label>
- <br />
- <input type="checkbox" id="english" name="language"/>
- <label for="english">English</label>
- <br />
- <input type="checkbox" id="french" name="language"/>
- <label for="french">French</label>
- <br />
- <input type="checkbox" id="ewe" name="language"/>
- <label for="ewe">Ewe</label>
- <br />
- <input type="checkbox" id=twi name="language"/>
- <label for="twi">Ashanti Twi</label>
- <br />
- <input type="checkbox" id="fante" name="language"/>
- <label for="fante">Fante</label>
- <br />
- <input type="checkbox" id="buli" name="language"/>
- <label for="buli">Buli</label>
- <br />
- <input type="checkbox" id="ga" name="language"/>
- <label for="ga">Ga Adangme</label>
- <br />
- </form>
- </fieldset>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement