How to make a full sign up form in html

Hello, today we are going to make a html full sign up form looking something like this. First type in this code for the first name. < h1 > First name </ h1 > This code will say first name so the person knows they have to type their first name. To add a box to type it in type < input type =" name "> so overall it looks like this. < h1 > First name </ h1 > < input type =" name "> To add the last name you have to type < h1 > Last name </ h1 > < input type =" name "> . For the email address type < h1 > Email </ h1 > < input type = " Email " name = " Email "> For the the password type < h1 > Password </ h1 >< input type =" Password "> Now for the Confirm password copy and paste our last code. Instead of Password in the <h1> section replace it with Confirm Password. If you were able to do it you successfully programmed a ...