Student Form Source Code
<html>
<head>
<title>Student Form</title>
</head>
<body>
<h1>Dr. BBA Polytechnic College, Karad</h1>
<h2>Student Registration Form</h2>
<form action="/action" autocomplete="on" method="post" target="_blank">
<label for="name">Name:</label><br />
<input type="text" id="name" name="name" /><br /><br />
<label for="dob">D.O.B</label><br />
<input type="date" id="dob" name="dob" /><br /><br />
Gender:
<input type="radio" id="male" name="gender" value="male" />
<label for="male">Male</label>
<input type="radio" id="female" name="gender" value="female" />
<label for="female">Female</label>
<input type="radio" id="Others" name="gender" value="Others" />
<label for="Others">Others</label><br /><br />
<label for="email">E mail</label><br />
<input type="email" id="email" name="email" /><br /><br />
<label for="p_no">Phone no.</label><br />
<input type="digits" id="p_no" name="ph_no" /><br /><br />
<label for="add">Address</label><br />
<textarea id="add" name="add"></textarea><br /><br />
Hobbies:
<input type="checkbox" id="drawing" name="hobbies" value="Drawing" />
<label for="drawing">Drawing</label>
<input type="checkbox" id="singing" name="hobbies" value="singing" />
<label for="singing">Singing</label>
<input type="checkbox" id="dancing" name="hobbies" value="dancing" />
<label for="dancing">Dancing</label>
<input type="checkbox" id="others" name="hobbies" value="others" />
<label for="others">Others</label>
<input
type="text"
id="others"
name="others"
placeholder="Ex: Editing"
/><br /><br />
Course:
<select id="course" name="course">
<option value="btech">B.Tech</option>
<option value="mtech">M.Tech</option>
<option value="mba">M.B.A</option>
<option value="">Select Course</option>
</select>
<br /><br /><br /><br />
<input type="submit" value="Submit" />
<input type="reset" value="reset" />
</form>
<br />
<footer>© All Rights Rsereved.</footer>
</body>
</html>
Comments
Post a Comment