-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm.html
More file actions
71 lines (67 loc) · 2.47 KB
/
Copy pathForm.html
File metadata and controls
71 lines (67 loc) · 2.47 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
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML Form</title>
</head>
<body>
<h1>Form in HTML</h1>
<form action="/submit.php">
<div>
<label for="name">Enter your name</label>
<input type="text" id="name" placeholder="Enter your name">
</div>
<div>
<label for="number">Enter your number</label>
<input type="tel" id="number" placeholder="Enter your number">
</div>
<div>
<label for="mail">Enter your Email</label>
<input type="Email" id="mail" placeholder="Enter your Email">
</div>
<div>
<label for="password">Enter your passoward</label>
<input type="pass" id="password" placeholder="Enter your password">
</div>
<div>
<label for="password">Enter your Reset password</label>
<input type="pass" id="password" placeholder="Enter your Reset password">
</div>
<div>
<label for="mob">Enter your mobile number</label>
<input type="value" id="mob" placeholder="Enter your mobile number">
</div>
<div>
<label for="Birth">Date of Birth</label>
<input type="date" id="Birth">
</div>
<div>
<label>Gender</label>
<input type="radio" id="female" name="gender">
<label for="female">female</label>
<input type="radio" id="male" name="gender">
<label for="male">Male</label>
<input type="radio" id="other" name="gender">
<label for="other">Other</label>
</div>
<div>
<label> subcription pluse</label>
<input type="radio" id="basic" name="sub">
<label for="basic">Basic</label>
<input type="radio" id="premium" name="sub">
<label for="premium">Premium</label>
<input type="radio" id="vip" name="sub">
<label for="vip">VIP</label>
</div>
<div>
<input type="checkbox" id="box">
<label for="box">I agree this term & condition</label>
</div>
<div>
<label for="comment">comment</label>
<textarea id="comment" placeholder="Enter your comment" rows="4"></textarea>
</div>
</form>
</body>
</html>