Skip to main content

Posts

Showing posts with the label What is form in HTML

Forms Tag in HTML

Forms tag in HTML πŸ‘‰ The forms tag is used to create an HTML form for user input.. πŸ‘‰ In this Blog i will show you how to create a form and its tags, attributes. πŸ‘‰ Let's Start Firstly we  create a form start with <form> tag </form> <form action=" serverlink " method="POST" autocomplete="off"> <fieldset >  <legend> Registration form</legend> Note: Firstly we create a Label tag  <label for="fname" class="fname"> First Name </label> </br> πŸ‘‰We use input type ="text" for  get a user information in text. like name address, and other info.           <input type="text" name="fname" id="fname"> </br> </br> <label for="lname"> Last Name </label></br> <input type="text" name="lname" id="lname"> </br> </br> πŸ‘‰     When we want a user email id so we...