-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
38 lines (37 loc) · 1.43 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
<!DOCTYPE HTML>
<html>
<head>
<title>FORM</title>
</head>
<body>
<h2 style="font-family:arial;color:red;">LETS GO!!</h2>
<p>First Name : <input type="text" name="first_name" />
<br /> <br />
Last Name : <input type="text" name="last_name" />
<br /><br />
Gender : <input type="radio" name="gender" value="male" />Male
<input type="radio" name="gender" value="female" />Female
<br /> <br />
Year : <select name="year">
<option value="1990">1990</option>
<option value="1991">1991</option>
<option value="1992">1992</option>
<option value="1993">1993</option>
<option value="1994">1994</option>
</select>
<br /><br />
User Name : <input type="text" name="user_name" />
<br /> <br />
Password : <input type="password" name="password" />
<br /> <br />
What're your goals?? <textarea name="goals" >
</textarea>
<br /> <br />
How would you like us to contact you? Phone<input type="checkbox" name="phone" /> E-mail<input type="checkbox" name="email" /> SMS<input type="checkbox" name="sms" />
<br /><br />
Upload your profile picture : <input type="file" name="picture" />
<br /> <br />
<input type="submit" name="submit" value="Submit!" />
</p>
</body>
</html>