-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
49 lines (49 loc) · 1.61 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="Alay Shimpee's contact details">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="">
</head>
<body>
<p>
<h1>Contact Details :</h1>
<table>
<tr>
<td><strong>Email Id</strong></td>
<td>[email protected]</td>
</tr>
<tr>
<td><strong>Mobile Number</strong></td>
<td>+91 9998794612</td>
</tr>
<tr>
<td><strong>Address</strong></td>
<td>B6/4 GIPCL Township <br>Nani Naroli <br>Mangrol <br>Surat-394110</td>
</tr>
</table>
</p>
<hr size="2" noshade color="black">
<h1>Contact Me!!</h1>
<table cellspacing="2">
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<tr>
<td><label>Your Name</label></td>
<td><input type="text"></td>
</tr>
<tr>
<td><label>Your EmailId</label></td>
<td><input type="email"></td>
</tr>
</table>
<label for="">Your Message</label>
<br>
<textarea name="name" cols="30" rows="10"></textarea>
<br>
<input type="submit" >
</form>
</body>
</html>