how to make a form with html-5

                                                         how to make a form with html-5


                                           

                                      COLLAGE FORM WITH HTML


<html>
     <head>
 
  <title>
  html-forms
  </title>
 
  </head>
 
    <body>
    <h2>enter your details</h2>
    <form>
    <fielset>
    <legend>enter your details</legend>
    firstname:
    <input type="text" name="firstname"><br>
    lastname:
    <input type="text" name="lastname"><br>
   
    age:<input type="radio" name="age">under 18 <input type="radiio" name="age">over 18<br><br>
   
    <select name="qualification">
    <option value="mba">MBA</option>
    <option value="mca">MCA</option>
    <option value="bba">BBA selected</option>
    <option value="bcom">BCOM</option>
    <option value="bsc">BSC</option>
    </select>
       how to make a form with html-5
    <input type="submit" name="clickhere">
    <input type="reset"><br>
    password:<input type="password" name="password"><br>
     <input type="checkbox" name="interest" value="cricket">cricket
    <input type="checkbox" name="interest" value="football">football
    <input type="checkbox" name="interest" value="hockey">hockey<br>
    <input type="button" value="clickhere"><br><br>
   
     
   <input type="color" name="choosecolor"><br><br>
   <input type="date" name="dob"><br><br>
   email:
   <input type="email" name="mail"><br><br>
   <input type="file" name="choosefile"><br><br>
   month:1-12
   year:2000-2020
   <input type="month" name="exammonth"><br><br>
   number:1-10
   <input type="number" name="quantity" min="1" max="10"><br><br>
   rating:1-10
   <input type="range" name="rating" min="1" max="10"><br><br>
   search:
   <input type="search" name="search"><br><br>
   telephone no:
   <input type="tel" name="usertel"><br><br>
 
   birthtime:
   <input type="time" name="birthtime"><br><br>
   url:
   <input type="url" name="enterurl"><br><br>
   
 
    </fieldset>
   
     how to make a form with html-5
   
    </body>

</html>

Comments

Popular Posts