-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path8th class.html
More file actions
63 lines (61 loc) · 1.69 KB
/
8th class.html
File metadata and controls
63 lines (61 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!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>Document</title>
</head>
<body>
<!-- <p>Date:14/December/2022</p>
<p>Day:Wednesday</p>
<p>Class= No</p> -->
<form action="" method="get">
<input type="text" placeholder="First name" name="fname">
<br>
<br>
<input type="text" placeholder="Last name" name="lname">
<br>
<br>
<input type="Email" name="user email" id="" placeholder="Enter your email">
<br>
<br>
<input type="password" name="user password" id="" placeholder="Password" maxlength="4">
<br>
<br>
<input type="tel" placeholder="Contact number">
<br>
<br>
<input type="radio" name="gen" value="Male">Male
<input type="radio" name="gen" value="Female">Female
<br>
<br>
<H3>Your date of Birth</H3>
<input type="date" name="user birthday" id="">
<br>
<br>
<select name="city" id="">
<option value="">--select your city--</option>
<option value="Fsd">Fsd</option>
<option value="Mlt">Mlt</option>
<option value="LHR">LHR</option>
</select>
<br>
<br>
<h3>Your Hobbies</h3>
<input type="checkbox" name="">Books Reading
<input type="checkbox" name="">Gardening
<input type="checkbox" name="">Other
<br>
<br>
<input type="adress" placeholder="Your Adress" name="applicant adress">
<br>
<br>
<textarea name="About" id="" cols="50" rows="50" placeholder="About"></textarea>
<br>
<br>
<input type="reset" value="Reset">
<input type="submit" value="submit">
</form>
</body>
</html>