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
106 lines (94 loc) · 2.48 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!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>Task 5</title>
<style>
*{
margin-left: 0;
margin-right: 0;
padding: 0;
}
form {
padding: 50px;
border: 5px solid black;
}
</style>
</head>
<body>
<h1 style="text-align: center">Form</h1>
<form>
Name :
<input type="text">
<br />
<br />
<br />
DOB :
<input type="date">
<br />
<br />
<br />
Gender :
<input type="radio" id="male" name="gen">
<label id="male">Male</label>
<input type="radio" id="female" name="gen">
<label id="female">Female</label>
<input type="radio" id="other" name="gen">
<label id="other">Other</label>
<br />
<br />
<br />
Tech Stack :
<input type="checkbox">
<label>AI</label>
<input type="checkbox">
<label>ML</label>
<input type="checkbox">
<label>Cloud</label>
<input type="checkbox">
<label>Web</label>
<input type="checkbox">
<label>App</label>
<input type="checkbox">
<label>DevOps</label>
<input type="checkbox">
<label>System</label>
<br />
<br />
<br />
Email :
<input type="email">
<br />
<br />
<br />
Phone Number :
<input type="number">
<br />
<br />
<br />
<label for="security">Select a Security Question :</label>
<select name="security" id="security">
<!-- <option value="default">Select your Question</option> -->
<option value="favbook">What is your favourite book?</option>
<option value="nickname">What is your nickname?</option>
<option value="birthtown">What is your birth town?</option>
<option value="other">Other</option>
</select>
<br>
<input type="password" placeholder="Your Answer">
<br />
<br />
<br />
<input type="file" id="myFile" name="filename">
<!-- <br/>x -->
<input type="submit">
<br />
<br />
<br />
<input type="submit">
<input type="reset">
</form>
</body>
</html>