-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form 1.html
82 lines (80 loc) · 2.41 KB
/
Form 1.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form Assignment</title>
</head>
<body>
<body bgcolor="slateblue" text="black"></body>
<form>
<p>
First Name <input type="text"placeholder="First Name">(max 30 character a-z and A-Z)
</p>
<p>
Last Name <input type="text"placeholder="Last Name">(max 30 character a-z and A-Z)
</p>
<p>
Date of Birth <input type="Date"
</p>
<p>
Emai id <input type="Email" placeholder="Enter your Email Id">
</p>
<p>
Mobile Number <input type="number" placeholder="Phone"> (10 digit Number)
</p>
<p>
Gender <input type="radio" name="Gender"id="m">
Male
<input type="radio" name="Gender"id="f">
Female
</p>
<p>
Address <textarea name="Adress"id="a"cols="25" raws="4"></textarea>
</p>
<p>
City <input type="text">(max 30 character a-z and A-Z)
</p>
<p>
Pin Code <input type="number">(6 digit number)
</p>
<p>
State <input type="text">(max 30 characters a-z and A-Z)
</p>
<p>
Country <input type="text">
</p>
<p>
Hobbies <input type="checkbox" name="Hobbies" id="h">
Drawing
<input type="checkbox">
Singing
<input type="checkbox">
Dancing
<input type="checkbox">
Sketching
<input type="checkbox">
Others
</p>
<p>
Qualification <input type="text" placeholder="Select your class"><input type="text" placeholder="Board">
<input type="text" placeholder="percentage"><input type="text" placeholder="Year of passing">
</p>
<p>
Cources and Apply for
<input type="radio" name="Cources" id="c"
oin a Music Class.
<input type="radio" name="courses" id="c">
Coding Courses.
<input type="radio" name="courses" id="c">
Cooking Lessons.
<input type="radio" name="courses" id="c">
A Physical Activity Course.
<input type="radio" name="courses" id="c">
Web Devolopment.
<input type="radio" name="courses" id="c">
Techno Kids.
</p>
</form>
</body>
</html>