Form in HTML

So hello friends in this tutorial we are going to learn more in HTML and that is form. Forms which you submit online for admission in college . Otherwise to create account on Facebook you submit your email id, password, mobile no. etc. So here we going to learn about form in HTML.


<form>
   <input type="text" placeholder="Name">     
  <input type="email" placeholder="email>     
  <input type="password" placeholder="password">  
  Gender:               
    Male: <input type="radio" >
   Female:<input type="radio" >
   Checkbox:<input type="checkbox">
 Date: <input type="date">
  Datetime:<input type="datetime-local>
  <input type="submit" value="submit">
  <input type="reset" value="reset>
</form>
     
                         
    

Gender: Male: Female:
Checkbox:
Date:
Datetime:

Here are some other posts

Ordered and unordered lists in HTML

Attributes in HTML

Basics of html

How to become a web developer

Tables in HTML

Ids and Classes in HTML

Images and links in HTML