-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
97 lines (76 loc) · 2.21 KB
/
form.html
File metadata and controls
97 lines (76 loc) · 2.21 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html>
<head>
<title>this is my 1st wwebsite</title>
</head>
<body>
<form>
<div>
<label for="fname">first name:</label>
<input type="text" id="fname" name="fname" placeholder="Brajamohan">
</div>
<br>
<div>
<label for="lname">last name:</label>
<input type="text" id="lname" name="lname" placeholder="das">
</div>
<br>
<div>
<label for="pass">password:</label>
<input type="password" id="pass" name="pass" maxlength="6">
</div>
<br>
<div>
<label for="email">email:</label>
<input type="email" id="email" name="email" placeholder="xyz@xyz">
</div>
<br>
<div>
<label for="phone">phone :</label>
<input type="tel" id="phone" name="phone" placeholder="7349824039">
</div>
<br>
<div>
<label for="bdate">birthdate:</label>
<input type="date" id="bdate" name="bdate">
</div>
<br>
<div>
<label for="quantity">quantity:</label>
<input type="number" id="quantity" name="quantity" min="0" max="99" value="1">
</div>
<br>
<div>
<lable for="title">title:</lable>
<label>Mr.</1abe1>
<input type="radio" name="title">
<label>Mr.s</label>
<input type="radio" name="title">
<label>Phd.</label>
<input type="radio" name="title">
</div>
<br>
<div>
<label for="payment">payment:</label>
<select id="payment" name=" payment" >
<option value="visa">visa</option>
<option value="mastercard">mastercard</option>
<option value="giftcard">giftcard</option>
</select>
</div>
<br>
<div>
<label for="subscribe">subscribe:</label>
<input type="checkbox" id="subscribe" name="subscribe" min="0">
</div>
<br>
<div>
<input type="reset">
</div>
<br>
<div>
<input type="submit">
</div>
</form>
</body>
</html>