-
Notifications
You must be signed in to change notification settings - Fork 4
/
contact.html
31 lines (24 loc) · 982 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
27
28
29
30
31
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>My Contact</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h3>My Contact Details</h3>
<li><a href="https://www.linkedin.com/in/janhavi-salunkhe-2a12b5218/">Linkedin</a></li>
<li><a href="https://twitter.com/JanhaviSalunkh4">Twitter</a></li>
<li><a href="https://www.instagram.com/selenophile_exe_/">Instagram</a></li>
<hr>
<form class="" action="mailto:janhavisalunkhe2909@gmail.com" method="post" enctype="text/plain">
<label for="Name">Your Name:</label>
<input type="text" name="YourName:" value=""><br>
<label for="Email">Your Email:</label>
<input type="email" name=" YourEmail:" value=""><br>
<label> Your Message:</label><br>
<textarea name="YourMessage:" rows="4" cols="40"></textarea><br>
<input type="submit" name="">
</form>
</body>
</html>