Registeration form by using html

hello!!!!!! Just now i created a registration form by using html. And that was so easy . Firstly we give some information about tags which is used for creating a form. The tags are used for creating form are input tag, form tag , td (table data) tag, tr (table row) tag.

Input tag :- In input tag we can enter our data.

Form tag :- form tag is used for creating a form for our input.

Td tag :- td tag is used for table data . It shows left aligned text

Tr tag :- tr tag means row of cells in a table.

    <head>
        <title>register form</title>
    </head>
    <body>
       <h1> REGISTERATION FORM </h1>
        <form>
            <table>
                <tr>
                    <td>
                        Name :
                    </td>
                    <td><input type="text" placeholder="Name" name="">
                    </td>
                </tr>
                <tr>
                    <td>  
                        password :
                    </td><br>
                    <td>
                        <input type="password" placeholder="password" name="">
                    </td>
                </tr>
                <tr>
                    <td>
                        Gender :
                    </td>
                    <td>
                        <input type="radio" name="Gender">Male
                        <input type="radio" name="Gender">Female
                     </td>
                </tr>
                <tr>
                    <td>
                        Email ID :
                    </td>
                    <td>
                        <input type="Email ID" placeholder="Email ID" name="">
                    </td>
                </tr>
                <tr>
                    <td>
                        Phone no. :
                    </td>
                    <td>
                        <select>
                            <option>91</option>
                            <option>90</option>
                            <option>92</option>
                            <option>93</option>
                            <option>94</option>
                        </select>
                       <input type="Phone no." name="">
                    </td>
                </tr>
                <tr>
                    <td>
                        Birthdate:
                    </td>
                    <td>
                        <input type="Birthdate" name="">
                    </td>
                </tr>
                <tr>
                    <td>
                        <input type="submit" name="">
                    </td>
                </tr>
            </table>
        </form>
    </body>

output:-

Screenshot (9).png