Form Coding
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Class form</title>
</head>
<body>
<div>
<h1>Class join Form 2022</h1>
<form action="form.php">
<td>Name :</td>
<input type="text" placeholder="First Name" name="" id="">
<input type="text" placeholder="Last Name" name="" id=""><br>
<label for="Gender">
<td>Gender :</td>
<input type="radio" name="Gender" id="Gender">Mall
</label>
<label for="Femall">
<input type="radio" name="Gender" id="Femall">Femall
</label>
<section>
<td>Password :</td>
<input type="text" placeholder="password" name="" id="">
</section>
<section>
<td>Mobail Namber :</td>
<input type="number" name="" id=""><br>
<td>Date of Bate :</td>
<input type="date" name="" id="">
</section>
<section>
<td>Sudject :</td>
<select name="" id="">
<option value="scince">Scince</option>
<option value="artch">Artch</option>
<option value="comerce">Comerce</option>
</select>
</section>
</form>
</div>
</body>
</html>
Comments
Post a Comment