-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContactMe.html
30 lines (30 loc) · 1.17 KB
/
ContactMe.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact Me</title>
</head>
<body>
<h3>Contact me via any of the following mediums:</h3>
<h4>Email: [email protected]</h4>
<h4><a href="https://www.linkedin.com/in/gaurikaakathpalia/">Linkedin</a></h4>
<h4><a href="https://www.instagram.com/gaurikaagossips/">Instagram</a></h4>
<h4><a href="https://twitter.com/Gaurikaa2">Twitter</a></h4>
<h4><a href="https://t.me/Gaurikaa85">Telegram</a></h4>
<br>
<h2>OR</h2>
<br>
<h3>Give in your details we'll contact you:</h3>
<form class="" action="Thankyou.html" method="post" enctype="text/plain">
<label>Your Name: </label>
<input type="text" name="Your Name: " value=""><br>
<label>Your Contact Number: </label>
<input type="number" name="Your Contact Number: " value=""><br>
<label>Your Email: </label>
<input type="email" name="Your Email: " value=""><br>
<label>Your Message:</label><br>
<textarea name="Your Message" rows="10" cols="50"></textarea><br>
<input type="submit" name="" value="Save">
</form>
</body>
</html>