Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
35 views5 pages

Que 1

The document is a student registration form for a web designing course, including fields for personal information such as name, parent's names, qualifications, gender, postal address, contact number, and email. It features a table for educational qualifications and dropdowns for degree selection. The form also includes submit and reset buttons for user interaction.

Uploaded by

Sonal Bhammar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
35 views5 pages

Que 1

The document is a student registration form for a web designing course, including fields for personal information such as name, parent's names, qualifications, gender, postal address, contact number, and email. It features a table for educational qualifications and dropdowns for degree selection. The form also includes submit and reset buttons for user interaction.

Uploaded by

Sonal Bhammar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 5

<html>

<head>

<title>student registration form</title>

<style>body {background:lightgray;} table,th,td{border:1px solid black;}

mr-100{margin-right:100;}mr90{margin-right:90;}

mr-110{margin-right:110;}

mr-67{margin-right:67;}

mr-50{margin-right:50;}

SUBJECT:WEB DESIGNING DIV-b

ENROLLMENT NO:20020201077

mr-45{margin-right:45;}

mr-20{margin-right:20;}

mt-5{margin-top:5px;}

ml-60{margin-left:60px;}

</style>

</head>

<body>

<h1 style="text-align:center;">student registration form</h1>

<br>

<form method="post">

name:<input type="text" name="name">

<br>

<br>

father's name:<input type="text" name="father's name">

<br>

<br>

mother's name:<input type="text" name="mother's name">

<br>
<br>

<label>

qualification:

</label>

<br>

<table border="5">

<tr>

<th> degree name</th>

<th> year of the passing </th>

<th> percentage </th>

<th> board</th>

</tr>

<tr>

<td>

<select>

<option value="10th">10th</option>

<option value="12th">12th</option>

<option value="bca">bca</option>

<option value="bba">mba</option>

<option value="mca">mca</option>

<option value="become">mcome</option>

</select>

</td>

<td>

<input type="text" name="year" size="10">

</td>

<td>

<input type="text" name="percentage" size="10">

</td>
<td>

<select>

<option value="bmu">bmu</option>

<option value="drb">drb</option>

<option value="vnsgu">vnsgu</option>

</select>

</td>

</tr>

</table>

<br>

<br>

<label> gender:

</label>

<input type="radio" name="gender" >mail

<input type="radio" name="gender" >femail

<input type="radio" name="gender" >other

<br>

<br>

<label>

postal address:

</label>

<textarea rows="5" value="address">

</textarea>

<br>

<br><label>

content no:

</label>

<input type="text" name="phone" size="10">

<br>
<br><label>

email:

</label>

<input type="email" id="email" name="email"><br><br>

<label>

program:

</label>

<select>

<option value="bca">bca</option>

<option value="bba">bba</option>

<option value="mba">mba</option>

<option value="mca">mca</option>

<option value="become">mcome</option>

<option value="bsc">msc</option>

</select>

<br>

<br>

<input type="submit"name="submit">

<input type="reset"name="reset">

</form>

</body>

<html>

You might also like