HOW TO CREATE A SIMPLE SIGNUP PAGE WITH HTML CSS

Signup form:
The signup form is defined in <body> Section.

Form displays level 1 heading “Signup” at the top of the screen.
<form>: Tag uses five input tags to get data from the user.
type=”text”: is used to create a text input field to accept name,address,or other kind of text form the user.
placeholder: Attribute is used in the Input field as a hint.
type=”email”: This is used to create an email field with built-in validation.
type=”password”: This is used to create a password field where text is displayed as asterisks.