-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcontact_me.html
42 lines (42 loc) · 1.09 KB
/
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
39
40
41
42
<html>
<head>
<meta charset="utf-8">
<title>Contact Me</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h1>My Contact Details</h1>
<table cellspacing="7">
<tr>
<td>Address:</td>
<td>1/19, Daisy Villa,</td>
</tr>
<tr>
<td></td>
<td>Paraniyam, Poovar P.O.</td>
</tr>
<tr>
<td></td>
<td>Thiruvananthapuram - 695525</td>
</tr>
<tr>
<td>Email:</td>
<td>jobinbiju9090@gmail.com</td>
</tr>
<tr>
<td>Phone:</td>
<td>+91 8281392010</td>
</tr>
</table>
<hr>
<form action="mailto:jobinbiju33@gmail.com" method="post" enctype="text/plain">
<label>Your Name:</label>
<input type="text" name="Your Name" value=""><br>
<label>Your Email:</label>
<input type="email" name="Your Email"><br>
<label>Your Message:</label>
<textarea name="Your message" rows="8" cols="80"></textarea><br>
<input type="submit" name="" >
</form>
</body>
</html>