How to make registration form in html.??
Four main tags are use to make registration form in html.
1st is form tag ,
2nd is break tag for line break
3rd is input type to enter the text in the form,
4th is textarea that is use for description your details.
lets see the four main tags.
<form>
FIRST NAME:<BR>
<input type="text" name="first name"><br>
LAST NAME:<BR>
<input type="text" name="last name"><br>
EMAIL:<BR>
<input type="text" name="email"><br>
<Textarea name="message" row="3" cols="30" placeholder="write query">
</textarea><br>
<input type="submit" name="submit"><br>
<input type="Reset" name="Reset"><br>
</form>
After understanding these four tags you can easily draw any form. but that form is very simple.to design these form we uses the CSS .We learn about CSS in next page.