-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
40 lines (34 loc) · 1.11 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
40
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>form</title>
</head>
<body>
<form class="" action="index.html" method="post">
<div class="">
<input type="text" name="name" placeholder="enter your Name">
<input type="password" name="password" placeholder="Ente password">
</div>
<div class="">
Favorite Color?
<input type="radio" name="green" value="green">green
<input type="radio" name="yellow" value="yellow">yellow
<input type="radio" name="orange" value="orange">orange
<input type="radio" name="black" value="black">black
</div>
<div class="">
<input name="countries" list="countries" placeholder="Country">
<datalist id="countries">
<option value="afganistan">
<option value="Albania">
<option value="Arabia">
<option value="Andora">
<option value="Angola">
<option value="America">
</option>
</datalist>
</div>
</form>
</body>
</html>