-
Notifications
You must be signed in to change notification settings - Fork 0
/
13_user_input.html
67 lines (53 loc) · 1.69 KB
/
13_user_input.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
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Input - skillnagar</title>
<!-- Get the full playlist from
YouTube.com/@skillnagar
-->
</head>
<body>
<h1>Register Now</h1>
<form>
<p>
<label>Your Name</label>
<input type="text" name="your_name" placeholder="Your Name"/>
</p>
<p>
<label>Your Email</label>
<input type="email" name="your_email" placeholder="Your Email"/>
</p>
<p>
<label>Your Phone</label>
<input type="number" name="your_phone" placeholder="Your Number"/>
</p>
<p>
<label>Your Date of Birth</label>
<input type="date" name="your_date" />
</p>
<p>
<label>Your Gender</label>
<input type="radio" name="gender" /> Male
<input type="radio" name="gender" /> Female
<input type="radio" name="gender" /> Others
</p>
<p>
<label>Your Hobbies</label>
<input type="checkbox" name="hobby" /> Cricket
<input type="checkbox" name="hobby" /> Football
<input type="checkbox" name="hobby" /> Coding
<input type="checkbox" name="hobby" /> Drawing
</p>
<p>
<label>Your Password</label>
<input type="password" name="your_password" placeholder="Your Password"/>
</p>
<p>
<input type="submit" value="Register my details now" />
</p>
</form>
</body>
</html>