-
Notifications
You must be signed in to change notification settings - Fork 3
/
contact.html
41 lines (29 loc) · 1.16 KB
/
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
32
33
34
35
36
37
38
39
40
41
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>My Contact</title>
<link rel="stylesheet" href="css/styles.css">
<script src="https://kit.fontawesome.com/2fd0081527.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="center">
<h3>My Contact Details</h3>
<form class="" action="mailto:atharva7507@gmail.com" method="post" enctype="text/plain">
<li><i class="fa-brands fa-linkedin"></i><a href="https://www.linkedin.com/in/atharva-gupta-155703220/"> Linkedin</a></li>
<li><i class="fa-brands fa-twitter"></i><a href="https://twitter.com/_introvertaf"></i> Twitter</a></li>
<hr>
<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>
<hr>
<div class="center2">
<input type="submit" name="">
</div>
</form>
</div>
</div>
</body>
</html>