-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-me.html
25 lines (25 loc) · 889 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact-Me</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h1>My Contact Details </h1>
<p><em> Address</em> :<strong> Bangalore,Karnataka,INDIA</strong></p>
<p><em> Phone</em> :<b> 9148042793 </b> </p>
<p><em> Email-ID</em> :<b> chandandasdivakar@gmail.com</b></p>
<hr size="5">
<form action="mailto:chandandasdivakar@gmail.com" method="post" enctype="text/plain">
<br>
<label>Your Name:</label>
<input type="text" name="yourName" value=""><br><br>
<label>Your Email:</label>
<input type="email" name="yourEmail" value=""><br><br>
<label>Your Message:</label> <br><br>
<textarea name="yourMessage" rows="8" cols="80"></textarea><br><br>
<input type="submit" name="" >
</form>
</body>
</html>