-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
63 lines (63 loc) · 2.14 KB
/
form.html
File metadata and controls
63 lines (63 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
<!DOCTYPE html>
<html>
<head>
<title>
Form Page
</title>
<style type="text/css">
body
{ background-color: cornflowerblue;
}</style>
<link rel="stylesheet" type="text/css" href=style11.css>
</head>
<body>
<form>
<input type="text" name="Username" value="Username"><br/>
<input type="password" name="Password" value="">
<br/>
<br/>
<br/>
<input type="button" name="Button" value="Submit">
<br/>
<br/>
<br/>
Male:<input type="radio" name="Male" value="male">
<br/>
Female:<input type="radio" name="Male" value="female">
<h3>Select your order</h3>
<ul>
<li>Chicken<input type="checkbox" name="chicken" value ="chicken"></li>
<li>Mutton<input type="checkbox" name="mutton" value ="mutton"></li>
<li>Fish<input type="checkbox" name="fish" value ="fish"></li>
<li>Egg<input type="checkbox" name="egg" value ="egg"></li>
<li>Crab<input type="checkbox" name="egg" value ="crab"></li>
</ul>
<br/>
<br/>
<br/>
<input type="button" name="Button" value="Place Order">
<h3>Select your payment Option</h3>
<select>
<option value="Cash">Cash on Delivery</option>
<option value="Credit">Credit Card</option>
<option value="Debit">Debit Card</option>
<option value="Net Banking">Net Banking</option>
<option value="UPI">UPI</option>
</select>
<br/>
<input type="button" name="Button" value="GO Forth">
<br/>
<br/>
<br/>
<h3>Something to addon...</h3>
<textarea name="req" rows=15 cols=40>
</textarea>
<br/>
<br/>
<br/>
<h3>Custom File if you wanna add</h3>
<br/>
<input type="file" name="mayank's file"/>
</form>
</body>
</html>