0% found this document useful (0 votes)
0 views2 pages

New Text Document

The document is an HTML biodata form that collects personal information such as name, address, contact number, email, date of birth, marital status, gender, nationality, and known languages. It also includes a table for educational qualifications with fields for exam details, university/board, year of passing, grade/class, and percentage. The form provides options to submit or reset the information entered.

Uploaded by

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

New Text Document

The document is an HTML biodata form that collects personal information such as name, address, contact number, email, date of birth, marital status, gender, nationality, and known languages. It also includes a table for educational qualifications with fields for exam details, university/board, year of passing, grade/class, and percentage. The form provides options to submit or reset the information entered.

Uploaded by

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

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Biodata Form</title>
</head>
<body>
<h2 align="center">BIODATA</h2>
<form>
<label>Name:</label>
<input type="text" name="name" value="Dinesh Pareek"><br><br>

<label>Address:</label>
<input type="text" name="address"><br><br>

<label>Contact Number:</label>
<input type="text" name="contact"><br><br>

<label>Email Address:</label>
<input type="email" name="email"><br><br>

<label>Date of Birth:</label>
<input type="date" name="dob"><br><br>

<label>Marital Status:</label>
<select name="marital">
<option>Unmarried</option>
<option>Married</option>
</select><br><br>

<label>Gender:</label>
<input type="radio" name="gender" value="male"> Male
<input type="radio" name="gender" value="female"> Female <br><br>

<label>Nationality:</label>
<input type="text" name="nationality"><br><br>

<label>Known Languages:</label>
<input type="checkbox" name="language" value="Marathi"> Marathi
<input type="checkbox" name="language" value="Hindi"> Hindi
<input type="checkbox" name="language" value="English"> English <br><br>

<label>Qualification:</label>
<table border="1">
<tr>
<th>Sr No.</th>
<th>Exam Detail</th>
<th>University/Board</th>
<th>Year of Passing</th>
<th>Grade/Class</th>
<th>Percentage</th>
</tr>
<tr>
<td>1</td>
<td><input type="text" name="exam1"></td>
<td><input type="text" name="university1"></td>
<td><input type="text" name="year1"></td>
<td><input type="text" name="grade1"></td>
<td><input type="text" name="percentage1"></td>
</tr>
<tr>
<td>2</td>
<td><input type="text" name="exam2"></td>
<td><input type="text" name="university2"></td>
<td><input type="text" name="year2"></td>
<td><input type="text" name="grade2"></td>
<td><input type="text" name="percentage2"></td>
</tr>
</table><br>

<label>Other Qualification:</label>
<input type="text" name="other_qualification"><br><br>

<input type="submit" value="Submit">


<input type="reset" value="Cancel">
</form>
</body>
</html>

You might also like