-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact_me.html
38 lines (34 loc) · 949 Bytes
/
contact_me.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact Me</title>
</head>
<body>
<table>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<tr>
<td><label for="">Name : </label></td>
<td><input type="text" name="Name" value=""></td>
</tr>
<tr>
<td><label for="">Password : </label></td>
<td><input type="password" name="Password" value=""></td>
</tr>
<tr>
<td><label for="">Email ID : </label></td>
<td><input type="email" name="Email" value=""></td>
</tr>
<tr>
<td><label for="">Message Here : </label></td>
</tr>
<tr>
<td><textarea name="Message" rows="10" cols="10"></textarea></td>
</tr>
<tr>
<td><input type="submit" name="" value=""></td>
</tr>
</form>
</table>
</body>
</html>