-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
48 lines (39 loc) · 1.52 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
42
43
44
45
46
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact Information</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div style="float:right">
<form action="index.html">
<button style="background-color: #B7B78A">Home</button>
</form>
</div>
<div class="body">
<h2>Contact Info.</h2>
<p>Currently living in <strong>Thanesar, Haryana.</strong></p>
<p>Email:- <strong><em>[email protected] </em></strong></p>
<p>DM me on Instagram <em><a href="https://www.instagram.com/hkv_24/"><strong>@hkv_24</strong></em></a></p>
<p>Linkedin: <a href="https://www.linkedin.com/in/harsh-kumar-verma-3136191b1/"><strong><em>harsh-kumar-verma-3136191b1</em></strong></a></p>
<p>Twitter: <a href="https://twitter.com/hkverma24"><strong><em>@hkverma24</em></strong></a></p>
<p>Github: <a href="https://github.com/hkv24"><strong><em>github.com/hkv24</em></strong></a></p>
<hr>
<h3>Enter Your Details here:-</h3>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label>Your Name:</label>
<input type="text" name="yourname">
<br>
<label>Email:</label>
<input type="email" name="youremail">
<br>
<label>Message:</label>
<br>
<textarea name="yourmessage" id="" cols="30" rows="10"></textarea>
<br>
<input type="Submit" style="background-color:#B7B78A">
</form>
</div>
</body>
</html>