How to create registration form using html | Html source code for creating registration form


How to create registration form using html | Html source code for creating registration form : -

<!DOCTYPE html>
<html>
<head>
    <title>Register Form</title> 
</head>
<body>
    <form>
        <table>
            <tr>
                <td>
                    Name : 
                </td>
                <td>
                    <input type="text" placeholder="Name" name="">
                </td>
            </tr>
            <tr>
                <td>
                    Password :
                </td>
                <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 : 
                </td>
                <td>
                    <input type="mail" placeholder="Email" name="">
                </td>
                <tr>
                    <td>
                        Phone no :
                    </td>
                    <td>
                        <select>
                            <option>+91</option>
                            <option>+92</option>
                            <option>+93</option>
                            <option>+86</option>
                            <option>+62</option>
                            <option>+81</option>
                            <option>+39</option>
                            <option>+60</option>
                            <option>+52</option>
                            <option>+7</option>
                            <option>+1</option>
                            <option>+32</option>
                        </select>
                        <input type="Phone" placeholder="62991*****" name=""
                    </td>
                </tr>
                <tr>
                    <td>
                        <input type="Submit" value="Submit" name="">
                    </td>
                </tr>
            </tr>
        </table>
    </form>
</body>
</html>

Output of this code :

Please do't post spam links...

Post a Comment (0)
Previous Post Next Post