-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContactMe.html
More file actions
50 lines (46 loc) · 1.81 KB
/
ContactMe.html
File metadata and controls
50 lines (46 loc) · 1.81 KB
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
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Me</title>
<link rel="shortcut icon" href="images/profile-photo.png" type="image/x-icon">
</head>
<body>
<h1>Contact Me</h1>
<section>
<ul>
<li><a href="https://www.linkedin.com/in/gunjankmishra" target="_blank">My LinkedIn</a></li>
<br>
<li><a href="https://twitter.com/_GunjanMishra" target="_blank">My Twitter</a></li>
<br>
<li><a href="https://www.gunjanmishra.com/" target="_blank">My Website</a></li>
<br>
<li><a href="https://github.com/GunjanKMishra" target="_blank">My GitHub</a></li>
<br>
<li><a href="https://codepen.io/GunjanMishra/pens/popular" target="_blank">My Codepen.io</a></li>
<br>
<li><a href="https://www.buymeacoffee.com/GunjanMishra" target="_blank">Buy Me Coffee</a></li>
<br>
<li><a href="https://www.instagram.com/_gunjan.mishra/" target="_blank">My Instagram</a></li>
</ul>
</section>
<section>
<h2>Message Me</h2>
<form action="mailto:gunjanmishra096@gmail.com" method="post" enctype="text/plain">
<label>Your Name:</label>
<input type="text" name="Your Name" placeholder="Your Name">
<br>
<label>Your Email:</label>
<input type="email" name="Your Email" placeholder="Youremail@email.com">
<br>
<label>Your Message:</label>
<br>
<textarea name="Your Message" cols="30" rows="10"></textarea>
<br>
<input type="submit">
</form>
</section>
</body>
</html>