-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path7 form tag.html
More file actions
61 lines (58 loc) · 2.07 KB
/
7 form tag.html
File metadata and controls
61 lines (58 loc) · 2.07 KB
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
<!DOCTYPE html>
<html lang="en"><!--this defines languages-->
<!--this is my first code-->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!--forms are used to collect data from user-->
<!--different types of forms signup/login-->
<!--action in form,where the data of form will go-->
<!--form cam hace space to fill,check box to tick,options to choose-->
<form action="/action.php">
<!--to create empty box-->
<input type="text" placeholder="type something here">
<br>
<input type="password" placeholder="type password">
<br>
<!--label,are used to give the description of input-->
<!--radiobutton,are used to select one of the given option-->
<label for="101";></label>
<input type="radio" value="class 11" name="class">class 11
<input type="radio" value="class 12" name="class">class 12
<br>
<label for="102";></label>
<input type="radio" value="class 11" name="class">class 11
<input type="radio" value="class 12" name="class">class 12
<!--class and id-->
<div id="id1" class=""group1></div>
<div id="id2" class=""group1></div>
<br>
<!--checkbox -->
<input type="checkbox" value="math" name="subject" id="101">math
<input type="checkbox" value="phy" name="subject" id="102">phy
<input type="checkbox" value="cs" name="subject" id="103">cs
<input type="checkbox" value="os" name="subject" id="104">os
<br>
<!--drop down menu,select is used in dropdown menu-->
<select name="city">
<option value="delhi">delhi</option>
<option value="delhi">agra</option>
<option value="delhi">guna</option>
<option value="delhi">bina</option>
</select>
<br>
<!--some area for text-->
<textarea name"feedback" id="101"placeholder="please type feedback" height> feedback</textarea>
<br>
<!--submit-->
<input type="submit" value="submit">
</form>
<head>
<main>
</main>
</head>
</body>
</html>