Basic tutorials create HTML user registration

By @mukhlisin1951/27/2018utopian-io

At this time I will explain how to make HTML form form usually used to collect data Start from to login, contact from, from for registration of user. For more details please follow the steps below :

What Will I Learn?

  • Will display the form of the registrar user form
    
  • You will use the basic form of HTML language to build a WEB
  • Learn the basic Tags you will use to create form in HTML

Requirements

  • You must have basic HTML knowledge
  • You must have Notepad and browser learn this tutorial.

Difficulty

  • Basic

Tutorial Contents

In this tutorial I will discuss creating a user registration form. The form is usually used to collect data form our web visitors. so that can generate form registrant user then follow tutorial below :

The basic tags we will use to create a form in HTML are form tags, inputs, textarea, select and options and I will explain what is the form tag, input, textarea, select and option. so you understand in the element that I will give in this tutorial.

tag form

The form must be inside the HTML and in the form tag, beginning with

and ending with </ form> The form tag will require attributes to work properly.

The basic structure of the form will look as follows :
11.JPG

The get method and post method method is if we fill the method attribute with get which is the default value if the method attribute is not written then the form field will be visible on the browser url.

What is the tag?

Input tag are the most tags used in the form and have many forms, ranging from plain text fields, text passwords, checkboxes, radio, to the submit button all in the form of tags.

I will give an example of a form of an input Tag group like.

or can use is an ordinary input textbox that accepts text input, for example used for input name, username, and input in the form of short text. Input type text can also have a value attribute that can be filled the initial view value of the text

####What is the