FormDemo.html

 <html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Student Registration</title>
    <style>
        table,tr,td,th{
            font-size: 25px;
        }
    </style>
</head>
<body bgcolor="#ddeeaa" style="text-align: center;font-size: 25px;">
    <h1 style="text-align: center;color: blue;">Student Placement Registration</h1>
    <form action="">
        <table style="margin-left: 600px;">
            <tr>
                <td><label for="">Enter First Name </label></td>
                <td><input type="text" id="" name="fname"></td>
            </tr>
            <tr>
                <td><label for="">Enter Last Name </label></td>
                <td><input type="text" id="" name="lname"></td>          </td>
            </tr>
            <tr>
            <td><label for="">Enter Password </label></td>
            <td><input type="password" id="" name="psw"></td>
            </tr>
            <tr>
            <td><label for="">Re-Enter Password </label></td>
            <td><input type="password" id="" name="psw"></td>
            </tr>
           <tr>
            <td><label for="">Gender </label></td>
            <td><input type="radio" id="" name="gender">Male
            <input type="radio" id="" name="gender">Female</td>
            </tr>
            <tr>
            <td><label for="">Programming Skills </label></td>
            <td><input type="checkbox">C
            <input type="checkbox">C++
            <input type="checkbox">Python
            <input type="checkbox">JAVA</td>
            </tr>
            <tr>
            <td><label for="">Branch</label></td>
            <td><select name="" id="">
                <option value="">CSE</option>
                <option value="">CSEAIML</option>
                <option value="">AIDS</option>
                <option value="">IT</option>
                <option value="">ECE</option>
                <option value="">EEE</option>
                <option value="">MECH</option>
                <option value="">CIVIL</option>
                <option value="">ASE</option>
            </select></td>
            </tr>
            <tr>
            <td><label for="">Address</label></td>
            <td><textarea name="" id="" cols="20" rows="5"></textarea></td>
           </tr>
           <tr>
            <td><label for="">Enter Your DOB </label></td>
            <td><input type="date"></td>
            </tr>
            <tr>
            <td><label for="">Enter You email address</label></td>
            <td><input type="email"></td>
            </tr>
            <tr>
            <td><label for="">Upload Your ID Card</label></td>
            <td><input type="file"></td>
            </tr>
            <tr>
                <td>
                    <input type="submit">
                </td>
                <td>
                <input type="button" value="Cancel">
                </td>
            </tr>
            <tr>
                   <td>
                    <input type="reset">
                </td>
            </tr>
        </table>
    </form>
</body>
</html>

Comments

Popular posts from this blog

MapReduce Matrix Multiplication Code

Word Count MapReduce Code