-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathforms.html
More file actions
55 lines (41 loc) · 1.58 KB
/
forms.html
File metadata and controls
55 lines (41 loc) · 1.58 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
<!DOCTYPE html>
<html>
<head>
<title>Forms</title>
</head>
<body>
<form>
<label>
<input type="checkbox" name="option" value="option-1" /> Option-1
</label>
<label>
<input type="checkbox" name="option" value="option-1" /> Option-1
</label>
<label>
<input type="checkbox" name="option" value="option-1" /> Option-1
</label>
<label>choose the option</label>
<select> <!--it is used to create drop down-->
<option>Value1</option>
<option>Value2</option>
<option>Value3</option>
</select>
<!--multi line input field-->
<textarea name="message">I am a mentor</textarea>
<!-- <label>First Name</label>
<input type="text" placeholder="Enter your first name" name="First Name" />
<lable>Email</lable>
<input type="email" placeholder="Enter your email" />
<label>password</label>
<input type="password" placeholder="Enter your password">
<input type="radio" name="brand" value="netflix" />
<label> NETFLIX </label>
<input type="radio" name="brand" value="netflix" />
<label> NETFLIX </label>
<input type="radio" name="brand" value="netflix" />
<label> NETFLIX </label>
<input type="submit" value="submit" />
<input type="reset" value="reset" /> -->
</form>
</body>
</html>