-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.html
39 lines (33 loc) · 1.1 KB
/
form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My web page</title>
</head>
<body>
<form action="">
<div>
<input type="text" name="name" placeholder="Name" id="">
<input type="password" name="password" placeholder="Password" id="">
</div>
<div>
Favorite Color?
<input type="radio" name="color" value="red" id="">Red
<input type="radio" name="color" value="green" id="">Green
<input type="radio" name="color" value="blue" id="">Blue
<input type="radio" name="color" value="other" id="">Other
</div>
<div>
<input name="country" list="countries" placeholder="Country">
<datalist id="countries">
<option value="Uganda">
<option value="Nigeria">
<option value="Wakanda">
<option value="Africa">
<option value="Kamland">
</datalist>
</div>
</form>
</body>
</html>