Advertisement
Zuma32

Assignment 2

Oct 12th, 2022
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.27 KB | Source Code | 0 0
  1. <!DOCKTYPE html>
  2. <html>
  3.   <head>
  4.     <title>CheckBoxType</title>
  5.   </head>
  6.   <body>
  7.     <h1><font color=green>Please check one of the following</font></h1>
  8.    
  9.     <fieldset>
  10.      <legend><b>FORM 3</b></legend>
  11.      
  12.     <form name="form3" action="url" method="get">
  13.      
  14.       <p><font color=red>select country:</font></p>
  15.    
  16.       <input id="jordan" type="checkbox" name="country" checked/>
  17.       <label for="jordan">Jordan</label>
  18.       <br />
  19.       <input id="yemen" type="checkbox" name="country" />
  20.       <label for="yemen">Yemen</label>
  21.       <br />
  22.       <input id="qatar" type="checkbox" name="country"/>
  23.       <label for="qatar">Qatar</label>
  24.       <br />
  25.       <input id="cameroon" type="checkbox" name="country"/>
  26.       <label for="cameroon">Cameroon</label>
  27.        <br />
  28.       <input id="brazil" type="checkbox" name="country"/>
  29.       <label for="brazil">Brazil</label>
  30.        <br />
  31.        <input id="ghana" type="checkbox" name="country"/>
  32.       <label for="ghana">Ghana</label>
  33.        <br />
  34.       <input id="south africa" type="checkbox" name="country"/>
  35.       <label for="south africa">South Africa</label>
  36.       <br />
  37.       <input disabled id="nigeria" type="checkbox" name="country"/>
  38.       <label for="nigeria">Nigeria</label>
  39.      
  40.       <p><font color=blue>Select Language</font></p>
  41.      
  42.       <input type="checkbox" id="arabic" name="language" checked/>
  43.       <label for="arabic">Arabic</label>
  44.       <br />
  45.       <input type="checkbox" id="english" name="language"/>
  46.       <label for="english">English</label>
  47.       <br />
  48.       <input type="checkbox" id="french" name="language"/>
  49.       <label for="french">French</label>
  50.       <br />
  51.       <input type="checkbox" id="ewe" name="language"/>
  52.       <label for="ewe">Ewe</label>
  53.       <br />
  54.       <input type="checkbox" id=twi name="language"/>
  55.       <label for="twi">Ashanti Twi</label>
  56.       <br />
  57.       <input type="checkbox" id="fante" name="language"/>
  58.       <label for="fante">Fante</label>
  59.       <br />
  60.       <input type="checkbox" id="buli" name="language"/>
  61.       <label for="buli">Buli</label>
  62.       <br />
  63.       <input type="checkbox" id="ga" name="language"/>
  64.       <label for="ga">Ga Adangme</label>
  65.       <br />
  66.     </form>
  67.     </fieldset>
  68.   </body>
  69. </html>
Tags: html
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement