-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact Me.html
37 lines (37 loc) · 1.61 KB
/
Contact Me.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
<!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>
</head>
<body background="https://www.solidbackgrounds.com/images/950x350/950x350-light-blue-solid-color-background.jpg">
<center>
<h1>Contact Me Here</h1>
<a href="mailto:[email protected]">Send me a Mail</a><br>
<a href="https://www.linkedin.com/in/pratyush-sharma-207234257/">LinkedIn</a><br>
<a href="https://www.instagram.com/pratyu.sh.arma_/">Instagram</a><br>
<em>Contact Number</em> - <a href="tel:+917269066998">+7269066998</a><br>
<hr>
<br>
<h2>Hey Visitor! Let's Connect</h2>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label>Your Name:</label>
<input type="text" name="Name" placeholder="name"><br><br>
<label for="dob">Your DOB:</label>
<input type="date" name="dob" placeholder="DOB" ><br><br>
<label for="gender">Gender:</label><br>
<input type="checkbox" name="male">Male <br>
<input type="checkbox" name="female">Female<br><br>
<label for="address">Address:</label><br>
<textarea name="address" cols="30" rows="5" placeholder="address"></textarea><br><br>
<label>Your Email:</label>
<input type="text" name="Email" placeholder="e-mail"><br><br>
<label>Your Message:</label><br>
<textarea name="Message" cols="30" rows="10" placeholder="type in your message"></textarea><br>
<input type="submit">
</form>
</center>
</body>
</html>