-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
34 lines (32 loc) · 921 Bytes
/
forms.html
File metadata and controls
34 lines (32 loc) · 921 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
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
<form action="mailto:lavishgehlod@gmail.com" method="post" enctype="text/plain">
<label>The forms elements </label><hr>
<input type="text"><br>
<input type="submit"><br>
<input type="checkbox"><br>
<input type="file"><br>
<input type="date"><br>
<input type="radio"><br>
<input type="range"><br>
<hr>
<label>Enter your email</label>
<input type="email">
<br>
<label>Enter password </label>
<input type="password">
<br>
<lable>Do you want to give email</lable>
<input type="checkbox"><br>
<lable>Enter email</lable>
<textarea name="name" raws="10" cols="10"></textarea>
<br>
<input type="submit"><br>
</form>
</body>
</html>