-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
49 lines (43 loc) · 1.29 KB
/
contact.html
File metadata and controls
49 lines (43 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact|Aditya CV</title>
<link rel="stylesheet" href="CSS/styles.css">
</head>
<body>
<center>
<h2>Wanna talk? Here's where you can find me! </h2>
<address>
<p>Email me :</p><a href=mailto:adityapb2016@gmail.com>adityapb2016@gmail.com</a>
<p> Slide into my DM's!</p><a href="https://twitter.com/thoughts_by_adi"> @thoughts_by_adi</a>
<p>Find me on Instagram</p><a href="https://www.instagram.com/_.adiitya/">@_.adiitya</a>
</address>
<br>
<hr>
<br>
<h3>For further queries:</h3>
<form action="mailto:adityapb2016@gmail.com" method="post" enctype="text/plain">
<label>Your Name:</label>
<input type="text" name="Name:" value="">
<br>
<label>Your Email:</label>
<input type="email" name="Email ID:">
<br>
<label>DOB</label>
<input type="date" name="DOB" value="">
<br>
<label>Your message</label>
<br>
<textarea name="Your message" rows="10" cols="30"></textarea>
<br>
<input type="submit" />
<br>
<br>
<br>
<hr>
</form>
<a href="index.html">Return to Home Page</a>
</center>
</body>
</html>