How to make a Registration Form Using HTML


How to make a registration form using HTML

Here is the code of this video you can copy and paste it on your code editor or notepad.

Here Is The Code

<!DOCTYPE html>
<html>
    <head>
        <title>Registration Form</title>
    </head>
    <body>
        <form>
            <table>
                <tr>
                    <td>
                        Name :
                    </td>
                    <td>
                        <input type="text" placeholder="Name" >
                    </td>
                </tr>
                <tr>
                    <td>
                    Password :
                    </td>
                    <td>
                        <input type="Password" placeholder="Password">
                    </td>
                </tr>
                <tr>
                    <td>
                        Email :
                    </td>
                    <td>
                        <input type="mail" placeholder="Email">
                    </td>
                </tr>
                <tr>
                    <td>
                        Gender :
                    </td>
                    <td>
                        <input type="radio" name="Gender">Male
                        <input type="radio" name="Gender">FeMale
                    </td>
                </tr>
                <tr>
                    <td>
                        Phone No :
                    </td>
                    <td>
                        <select>
                            <option>977</option>
                            <option>978</option>
                            <option>979</option>
                            <option>980</option>
                            <option>981</option>
                            <option>982</option>
                            <option>983</option>
                        </select>
                        <input type="phone" placeholder="98480***">
                    </td>
                </tr>
                <tr>
                    <td>
                        <input type="Submit" value="Submit">
                    </td>
                </tr>
            </table>
        </form>
    </body>
</html>

You have to paste this code in your code editor or notepad.

0 Comments:

Post a Comment