-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.html
61 lines (55 loc) · 1.26 KB
/
Contact.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
61
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact Details</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h3>Contact Details:</h3>
<ul>
<li>Address-</li>
<p>100-A vihar, B Nagar, X City.</p>
<li>Phone Number-</li>
<p>9876543210</p>
<li>E-mail-</li>
<p>[email protected]</p>
<hr size="2" noshade>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<table>
<tr>
<td>
<label>Name:</label>
</td>
<td>
<input type="text" name="NAME:" value="">
</td>
</tr>
<tr>
<td>
<label>E-Mail:</label>
</td>
<td>
<input type="email" name="E-MAIL:" value="">
</td>
</tr>
</table>
<table>
<tr>
<td>Your Message:</td>
</tr>
<tr>
<td>
<textarea name="MESSAGE:" rows="10" cols="30"></textarea>
</td>
</tr>
<tr>
<td>
<input type="submit" name="">
</td>
</tr>
</table>
</form>
</ul>
</body>
</html>