-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
26 lines (24 loc) · 952 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact Me!</title>
</head>
<body>
<h1>My Contact Details.</h1>
<h2><strong>E-mail ID:<a href="https://mail.google.com/mail/u/1/?ogbl#inbox">[email protected]</a></strong></h2>
<h2><strong>LinkedIn Profile:<a href ="https://www.linkedin.com/in/bhavya-singh-677932227/">@Bhavya Singh</a></strong></h2>
<h2><strong>Twitter Handle:<a href ="https://twitter.com/bhavyaaa_here">@bhavyaaa_here</a></strong></h2>
<hr noshade="4">
<form action="mailto:[email protected]"method="post"enctype="text/plain">
<label>Your Name:</label>
<input type="text"name="yourName"value=""><br>
<label>E-mail:</label>
<input type="email"name="yourEmail"value=""><br>
<hr noshade="2">
<label>Your Message:</label>
<textarea name="yourMessage"rows="10"cols="20"></textarea><br>
<input type="Submit"name="">
</form>
</body>
</html>