-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdropdown.html
More file actions
24 lines (24 loc) · 828 Bytes
/
Copy pathdropdown.html
File metadata and controls
24 lines (24 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dropdown and range and Text Area</title>
</head>
<body>
<div>
Choose your profession
<select name="profession" id="profession">
<option >Select your option</option>
<option value="student">Student</option>
<option value="dev">Developer</option>
</select>
</div>
<hr>
<label for="vol">select your volume</label>
<input type="range" id="vol" min="0" max="100" name="vol">
<br>
<label for="feedback">Please provide your valuable feedback :</label>
<textarea id="feedback" placeholder="write your feedback here"></textarea>
</body>
</html>