Posts

Showing posts from August, 2022

How to make a full sign up form in html

Image
  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 ...

Introduction to html

Image
 Html is a website building site designed for web developers. It is a programming  language that is best for beginners. More advanced sites are Javascript and Phython. Those are for pro developers that know the language. I will guide you to be a web developer. First, in order to code you must go to your window search and search up notepad. Hit notepad and you are up and going for my tutorials.

How to make a simple email form in html

Image
      In order to make a html email form you must type this code  < h1 > Email </ h1 >     < input type = " Email " name = " Email ">  This code will ask the person to enter their email address. This form is mostly used by many websites to enter their email address in order to sign in. 

How to make a simple password form in html

Image
    In order to make a html submit button you must type this code  < h1 > Password </ h1 >< input type =" Password ">  As you can see, you will be able to see a password form on your web. Now this can be very useful. In most websites it will ask you to sign in where you have to use type your password. If you want to be like most websites you have to make the person reconfirm their password so they are not a robot. Here is how to do it. All you have to do is to type  < h1 > Confirm   Password </ h1 >< input   type =" Password "> . If you want to make this code quicker you can copy and paste your first code. If you do that there will be two of the same things. So in the <h1> compartment instead of Password cross it out and type Confirm Password.

How to make a simple submit button in html

Image
  In order to make a html submit button you must type this code.  < input type = " submit "  value = " submit "> As you can see, you will be able to see a submit button on your web. Now it will be technically useless,  but however if you add more code to it, it will be extremely useful for storing information. As you can see, your submit button will have a little box saying submit in it.