-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForms.html
60 lines (58 loc) · 1.48 KB
/
Forms.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
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<title>My First Form</title>
</head>
<body>
<p><h1>#@# Sign in to have Fun #@#</h1></p>
<!-- <form>
<label>
Username:</label><br><br>
<label>
Password:
<input type="password" placeholder="Password"><br></label> -->
<form action="http://www.wikipedia.org">
<label for="Username">Username:</label>
<input id="Username" type="text" name="Username" placeholder="Username" required><br><br>
<label for="Password">Password:</label>
<input id="Password" type="password" placeholder="Password" required>
<br><br>
<label for="Email">Email:</label>
<input id="Email" type="Email" placeholder="Abc@def.com" required="">
<br><br>
Select ur gender:<br>
Male: <input type="radio" value="
M" name="gender"><br>
Female: <input type="radio" value="F" name="gender"><br>
Other: <input type="radio" value="O" name="gender"><br>
<p>Select Year Of Birth</p>
<select>
<option>2000</option>
<option>1999</option>
<option>1998</option>
<option>1997</option>
<option>1996</option>
<option>1995</option>
<option>1994</option>
<option>1993</option>
<option>1992</option>
<option>1991</option>
<option>1990</option>
</select>
<p>Select video quality?</p>
<select>
<option>144p</option>
<option>240p</option>
<option>480p</option>
<option>720p</option>
<option>HD</option>
</select>
<br><br>
<textarea rows="5" cols="5"></textarea>
<br><br>
I Agree to all T&C*
<input type="radio"><br><br>
<button>Let's go</button>
</form>
</body>
</html>