<html> <head> <title>Student Registration Form</title> </head> <body> <div> <center><h1>Student Registration Form</h1></center> </div> <hr> <div> <form> <fieldset> <legend>Personal Details</legend> <table> <tbody> <tr> <td> <label for="f-name">First Name - </label> <input type="text"> <br><br> <label for="l-name">Last Name - </label> <input type="text"> <br><br> <label for="dob">Date of Birth - </label> <input type="Date"> <br><br> <label for="email">Email-ID - </label> <input type="Email"> <br><br> <label for="mobile">Mobile Number - </label> <input type="Number"> <br><br> <label for="gender">Gender - </label> <input type="radio"> <label for="male">Male</label> <input type="radio"> <label for="Female">Female</label> <br><br> <label for="address">Address - </label> <textarea rows="6" cols="12"></textarea> <br><br> <label for="Pin">Pin Code - </label> <input type="pincode" maxlength="6"> <br><br> <label for="country">Country - </label> <select> <option>India</option> <option>USA</option> <option>Russia</option> <option>China</option> <option>Japan</option> </select> </td> <td style="position: relative;"> <img src="https://cdn.pixabay.com/photo/2012/04/13/21/07/user-33638_1280.png" alt="Student Image" style="position: absolute; top: 0; left: 200; width: 150px; height: 150px;"> </td> </tr> </tbody> </table> </fieldset> <hr> <fieldset> <legend>Educational Details</legend> <table> <tbody> <tr> <th>Class</th> <th>% Marks</th> <th>Board</th> <th>Year of Passing</th> </tr> <tr> <td>10th</td> <td><input type="Number"></td> <td><input type="text"></td> <td><input type="Year"></td> </tr> <tr> <td>12th</td> <td><input type="Number"></td> <td><input type="text"></td> <td><input type="Year"></td> </tr> <tr> <td>Graduation</td> <td><input type="Number"></td> <td><input type="text"></td> <td><input type="Year"></td> </tr> </tbody> </table> <br><br> <label>Apply For - </label> <br> <input type="checkbox"> <label>Job</label> <br> <input type="checkbox"> <label>Higher Education</label> <br> <input type="checkbox"> <label>Entrepreneur</label> <br><br> <label>Set Password</label> <input type="Password"> <br><br
Exp-3 WT
May 14, 2024
0