-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactme.html
45 lines (43 loc) · 1.44 KB
/
contactme.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Me</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="favicon.ico">
</head>
<body class="lalu">
<nav>
<a href="index.html">Back Home</a>
</nav>
<h2>Contact Me</h2>
<table width="40%" border="5" column="2" cellpadding="3">
<tr>
<td><strong>Phone No.:</strong></td>
<td>8001907134</td>
</tr>
<tr>
<td><strong>Email ID:</strong></td>
<td>nabinjana7@outlook.com</td>
</tr>
<tr>
<td><strong>Address:</strong></td>
<td>
Vill+P.O.- Uchitpur<br>P.S- Sabang<br>Dist- Paschim Medinipur<br>Pin- 721166
</td>
</tr>
</table>
<hr>
<form action="mailto:nabinjana7@gmail.com" method="post" enctype="text/plain">
<label>Name:</label>
<input type="text" name="Enter your name"><br><br>
<label>Email:</label>
<input type="email" name="Enter your Email"><br><br>
<label>Massage:</label>
<textarea name="Some Massage" id="" cols="30" rows="10" style="max-height: 80px;"></textarea><br><br>
<input class="submit" type="submit" value="Send Mail" name="" id="">
</form>
</body>
</html>