-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
83 lines (68 loc) · 2.14 KB
/
form.html
File metadata and controls
83 lines (68 loc) · 2.14 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
72
73
74
75
76
77
78
79
80
81
82
83
<!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>
<h1>REGISTER YOUR INTEREST</h1>
<hr />
<!-- form -->
<form action="#" method="post" enctype="">
<p>
<label for="">First Name:</label>
<input type="text" required minlength="3" name="first">
</p>
<p>
<label for="">Email</label>
<input type="email">
</p>
<p>
<label for="">Phone</label>
<input type="number">
</p>
<p>
<label for="">Password:</label>
<input type="password" />
<p>
<label for="">Message:
</label>
</p>
</p>
<p>
<label for=""><DOB:</label>
<input type="date"/>
</p>
<p>
<label for="">Gender:</label>
<input type="radio" name="gender" /> <label for="">Female</label>
<input type="radio" name="gender" /> <label for="">Male</label>
</p>
<p>
<label for="">Select a fruit:</label>
<select name="" id="">
<option value=""></option>
<option value="">Apple</option>
<option value="">Mango</option>
<option value="">Orange</option>
</select>hybhy
<label for="">Select a fruit:</label>
<select name="" id="" multiple>
<option value="">select</option>
<option value="">Apple</option>
<option value="">Mango</option>
<option value="">Orange</option>
<option value="">Kiwi</option>
</select>
</p>
<p>
<input type="checkbox" name="" /><label for="" > agree with term and condition</label>"
</p>
<p>
<button>Submit</button>
</p>
</form>
</body>
</html>