-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
47 lines (47 loc) · 1.42 KB
/
form.html
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
<!DOCTYPE html>
<html>
<head>
<title>Shimazi Panda</title>
</head>
<body bgcolor="pink">
<h1 align="center">SHIMAZI PANDA</h1>
<br>
<form action="/action_page.txt" method="post">
First name: <input type = "text" name = "first_name" />
<br>
Last name: <input type = "text" name = "last_name" />
<br>
<br>
Enter Legal Info:
<br>
User ID : <input type = "text" name = "user_id" />
<br>
Password: <input type = "password" name = "password" />
<br>
(Password must contain at least 8 characters)
<br>
<br>
Select Your Gender:<br>
<input type = "radio" name = "subject" value = "Male"> Male
<input type = "radio" name = "subject" value ="Female">Female
<br>
<br>
Select Your Food Category:
<br>
<select name = "dropdown">
<option value = "-select-" selected>select</option>
<option value = "Veg">Veg</option>
<option value = "Non - Veg">Non - Veg</option>
</select>
<p>Enter Your Address</p>
Address: <br />
<textarea rows = "5" cols = "50" name = "address">Enter Address here...
</textarea>
<br>
<br>
<br>
<input type = "submit" name = "submit" value = "Submit" />
<input type = "reset" name = "reset" value = "Reset" />
</form>
</body>
</html>