-
Notifications
You must be signed in to change notification settings - Fork 0
/
form2.html
60 lines (59 loc) · 1.83 KB
/
form2.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>contact me2</title>
</head>
<body>
<h1>my contact details 2</h1>
<p>my fictional address</p>
<p>01063895653</p>
<p>[email protected]</p>
<hr>
<form action="index.html" method="post">
<table>
<tr>
<label for="">your name</label>
<input type="text" name="" id=""><br>
</tr>
<tr>
<label for="">your email</label>
<input type="email" name="" id=""><br>
</tr>
<tr>
<td>
<label for="">your message</label><br>
</td>
<td>
<textarea name="" id="" cols="30" rows="10"></textarea><br>
<input type="submit" value="submit">
</td>
</tr>
</table>
</form>
<form action="[email protected]" method="post" enctype="text/plain">
<!--chrome-settings-privacy-site settings-additional permissions-protocol handlerssite can ask
open gmail -beside url -this page want to install aservice handler-allow - https://www.k8oms.net/links/mailto-link - test it -->
<table>
<tr>
<label for="">your name</label>
<input type="text" name="yourname" id=""><br>
</tr>
<tr>
<label for="">your email</label>
<input type="email" name="youremail" id=""><br>
</tr>
<tr>
<td>
<label for="">your message</label><br>
</td>
<td>
<textarea name="yourmessage" id="" cols="30" rows="10"></textarea><br>
<input type="submit" value="submit">
</td>
</tr>
</table>
</form>
</body>
</html>