forked from rohan1917/FSWDT-JAN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday-08-forms.html
116 lines (100 loc) · 4.01 KB
/
day-08-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
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
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html>
<head>
<title>Forms in Html</title>
</head>
<body>
<br />
<br/>
<hr />
<!-- forms -->
<table>
<tr>
<td><label>User Name </label></td>
<td><input type="file" placeholder="Plz enter ur user name" required/></td>
</tr>
<tr>
<td><label>Password:</label></td>
<td><input type="password" placeholder="Plz enter ur pwd" value="" required/></td>
</tr>
<tr>
<td><label>Gender:</label></td>
<td> <input type="radio" name="gender" checked/><label>Male</label>
<input type="radio" name="gender"/><label>Female</label>
<input type="radio" name="gender"/><label>Prefer Not To Say</label> </td>
</tr>
<tr>
<td><label>Select Courses Your Aware About:</label></td>
<td><input type="checkbox" value="c" name="course"/><label>C</label>
<input type="checkbox" value="cpp" name="course"/><label>C++</label>
<input type="checkbox" value="java" name="course" checked disabled/><label>Java</label>
<input type="checkbox" value="py" name="course"/><label>Python</label></td>
</tr>
<tr>
<td><label>Choose Your Course:</label></td>
<td><select>
<option value=""></option>
<option value="web">Web Development</option>
<option value="ds">Data Science</option>
<option value="ml">Machine Learning</option>
<option value="ai">AI</option>
<option value="bd">Big Data</option>
</select></td>
</tr>
<tr>
<!-- <td><label>Submit:</label></td> -->
<td></td>
<td><input type="submit"/></td>
</tr>
<tr>
<!-- <td><label>Reset:</label></td> -->
<td></td>
<td><input type="reset"/></td>
</tr>
</table>
<br/>
<hr/>
<form>
<label>User Name </label>
<input type="text" placeholder="Plz enter ur user name" required/>
<br />
<br />
<label>Password:</label>
<input type="password" placeholder="Plz enter ur pwd" value="" required/>
<br />
<br/>
<!-- ctrl+alt+arrowKey(top|down) -->
<label>Gender:</label>
<input type="radio" name="gender" checked/><label>Male</label>
<input type="radio" name="gender"/><label>Female</label>
<input type="radio" name="gender"/><label>Prefer Not To Say</label>
<br/>
<br/>
<label>Select Courses Your Aware About:</label>
<input type="checkbox" value="c" name="course"/><label>C</label>
<input type="checkbox" value="cpp" name="course"/><label>C++</label>
<input type="checkbox" value="java" name="course" checked disabled/><label>Java</label>
<input type="checkbox" value="py" name="course"/><label>Python</label>
<br/>
<br/>
<label>Choose Your Course:</label>
<select>
<option value=""></option>
<option value="web">Web Development</option>
<option value="ds">Data Science</option>
<option value="ml">Machine Learning</option>
<option value="ai">AI</option>
<option value="bd">Big Data</option>
</select>
<br/>
<br/>
<input type="submit"/>
<input type="reset"/>
</form>
</body>
</html>
<!--
html: to juz get some contents on screen
css: to get some styles
js: to work with som logic n we can make our appln dynamic
-->