<html>
<head>
    <title>Home</title>
</head>
<body>
    <!-- 
    <center>
        <form action="">
            <input type="text">
            <br>
            <br>
            <input type="number">
            <br>
            <br>
            <input type="email">
            <br>
            <br>
            <input type="password" required>
            <br>
            <br>
            <input type="color">
            <br>
            <br>
            <input type="time">
            <br>
            <br>
            <input type="date">
            <br>
            <button> submit</button>
        </form>
    </center> -->
    <!-- addmision form -->
    <form method="POST">
        <table align="center" cellpadding="10" cellspacing="0" border="1">
            <caption>Form</caption>
            <tr>
                <td>
                    First Name
                </td>
                <td>
                    <input type="text" placeholder="Enter your first name" name="fstName">
                </td>
                <td>
                    Last Name
                </td>
                <td>
                    <input type="text">
                </td>
            </tr>
            <tr>
                <td>
                    email
                </td>
                <td colspan="3">
                    <input type="email" placeholder="e.g example@example.com">
                </td>
            </tr>
            <tr>
                <td>
                    Gender
                </td>
                <td>
                    <input type="radio" name="gender" id="m" value="male">
                    <label for="m">Male</label>
                    <br>
                    <input type="radio" name="gender" id="f" value="female">
                    <label for="f">
                        Female
                    </label>
                </td>
                <td>
                    Subjects
                </td>
                <td>
                    <input type="checkbox" id="eng" checked disabled>
                    <label for="eng"> English</label>
                    <!-- <a>English</a> -->
                    <br>
                    <input type="checkbox" checked disabled>
                    Urdu
                    <br> <input type="checkbox" checked disabled>
                    Math
                    <br> <input type="checkbox">
                    Computer
                    <br> <input type="checkbox">
                    Bio
                    <br> <input type="checkbox">
                    Phy
                    <br> <input type="checkbox">
                    Chem
                    <br>
                </td>
            </tr>
            <tr>
                <td>
                    Class
                </td>
                <td>
                    <select name="" id="">
                        <option value="">
                            <!-- <a href="#"> -->
                            inter
                            <!-- </a> -->
                        </option>
                        <option value="">Matric</option>
                        <option value="">
                            BS
                        </option>
                    </select>
                </td>
                <td colspan="2">
                    <input type="submit" value="Insert">
                </td>
            </tr>
        </table>
    </form>
</body>
</html>
Comments
Post a Comment