-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
27 lines (24 loc) · 789 Bytes
/
form.html
File metadata and controls
27 lines (24 loc) · 789 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
25
26
27
<!DOCTYPE html>
<html>
<head>
<title>Test Form</title>
</head>
<body>
<form>
<lable for="fname">First name: </lable><br>
<input type="text" id="fname" name="fname"><br>
<lable for="lname">Last name: </lable><br>
<input type="text" id="lname" name="lname"><br><br>
<lable for="browser">Choose your favourite languages : </lable>
<input list="languages" name="language">
<datalist id="languages">
<option value="Java">
<option value="PHP">
<option value="Python">
<option value="C#">
</datalist>
<button>Submit</button>
<input type="reset">
</form>
</body>
</html>