Lecture 6 (evening)

 <html>


<head>
    <title>
        Home
    </title>
</head>

<body>

    <!-- <center>
        <form>
            name <input type="text">
            <br>
            <br>
            email <input type="email" required>
            <br><br>
            password <input type="password" required>
            <br><br>
            number <input type="number">
            <br><br>
            date <input type="date">
            <br><br>
            time <input type="time">
            <br><br>
            <button>Submit</button>
        </form>
    </center> -->



    <form action="">
        <table align="center" border="1" cellpadding="10" cellspacing="0">
            <tr>
                <td>
                    first name
                </td>
                <td>
                    <input type="text" placeholder="e.g John">
                </td>


                <td>
                    Last Name
                </td>
                <td>
                    <input type="text" readonly value="bilal javed">
                </td>
            </tr>
            <tr>
                <td>
                    email
                </td>
                <td colspan="3">
                    <input type="email" placeholder="example@example.com">
                </td>
            </tr>
            <tr>
                <td>
                    Password
                </td>
                <td>
                    <input type="password">
                </td>
                <td>
                    Confirm Password
                </td>
                <td>
                    <input type="password">
                </td>
            </tr>
            <tr>
                <td>
                    Gender
                </td>
                <td>
                    <input type="radio" name="g" id="x">
                    <label for="x">
                        Male
                    </label>
                    <br>
                    <input type="radio" name="g" id="y">
                    <label for="y">Female</label>
                </td>
                <td>
                    Subjects
                </td>
                <td>
                    <input type="checkbox" id="eng" checked disabled>
                    <label for="eng">English</label>
                    <br>
                    <input type="checkbox" id="urdu" checked>

                    <label for="urdu">Urdu</label>
                    <br>
                    <input type="checkbox" id="math" checked>

                    <label for="math">Math</label>
                    <br>
                    <input type="checkbox" id="bio">

                    <label for="bio">Bio</label>
                    <br>
                    <input type="checkbox" id="comp">

                    <label for="comp">Computer</label>
                    <br>
                    <input type="checkbox" id="chem">

                    <label for="chem"> Chem</label>

                </td>
            </tr>
            <tr>
                <td>
                    color
                </td>
                <td>
                    <input type="color">
                </td>
            </tr>
        </table>
    </form>
</body>

</html>

Comments