This repository was archived by the owner on Jul 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathTask5.html
65 lines (62 loc) · 2.13 KB
/
Task5.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
<!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>Task5</title>
<style>
</style>
</head>
<body>
<form>
<label>Full Name</label><br>
<input type="text"><br>
<label>Date of Birth</label><br>
<input type="date"><br>
<label>Gender</label><br>
<input type="radio" id="male" value="Male">
<label for="male">Male</label>
<input type="radio" id="female" value="Female">
<label for="female">Female</label>
<input type="radio" id="others" value="Others">
<label for="others">Others</label><br>
<label>Interest :</label><br>
<input type="checkbox" id="ml" value="ML">
<label for="ml">ML</label><br>
<input type="checkbox" id="ai" value="AI">
<label for="ai">AI</label><br>
<input type="checkbox" id="devops" value="DevOps">
<label for="devops">DevOps</label><br>
<input type="checkbox" id="cloud" value="Cloud">
<label for="cloud">Cloud</label><br>
<input type="checkbox" id="web" value="Web">
<label for="web">Web</label><br>
<input type="checkbox" id="mobile" value="MObile">
<label for="mobile">Mobile</label><br>
<input type="checkbox" id="system" value="System">
<label for="system">System</label><br>
<label>Email</label><br>
<input type="email"><br>
<label>Phone No</label><br>
<input type="number"><br>
<label>Security Question</label><br>
<select>
<option>What is your favourite Book?</option>
<option>What is your Nickname?</option>
<option>What is your Birth Place?</option>
<option>Others</option>
</select><br>
<br>
<testarea>
<input type="text">
</testarea>
<br>
<br>
<label>Upload Resume:</label><br><br>
<input type="file"><br><br>
<input type="submit">
<input type="reset">
</form>
</body>
</html>