<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forms and Input Tages</title>
</head>
<body>
<H1> This is HTML Forms Tutorial</H1>
<form action="rajendra.php"></form>
<div>
<label for="name">Name:</label>
<input type="text" name="My Name" id="name">
</div>
<div>
Mother's Name: <input type="text" name="Mother Name">
</div>
<div>
Father's Name: <input type="text" name="Father Name">
</div>
<div>
Date Of Birth: <input type="date" name="date of Birth">
</div>
<div>
Email Id: <input type="email" name="" name="My Email">
</div>
<div>
Mobile No: <input type="number" name="My Mobile number">
</div>
<div>
You are: Male <input type="radio" name="gender"> Female <input type="radio" name="gender">
</div>
<div>
<label for="your eligiblty">Are you Eligible? </label>
<input type="checkbox" name="Eligiblty" id="your eligiblty">
</div>
<div>
Agree: <input type="checkbox" select="Agree">
</div>
<div>Write about yourself: <br> <textarea name="my text" id="" cols="15" rows="5"></textarea></div>
<div>
<label for="discount">Discount</label>
<select name="my discount" id="discount">
<option value="yes">Yes</option>
<option value="no" selected>No</option>
</select>
</div>
<div>
<input type="submit" value="Submit Now">
<input type="reset" value="Reset Now">
</div>
</body>
</html>
Comments
Post a Comment