-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
26 lines (25 loc) · 997 Bytes
/
contact.html
File metadata and controls
26 lines (25 loc) · 997 Bytes
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>My Contact Adress </title>
</head>
<body>
<h1>You can contact me here</h1>
<hr size="3" noshade>
<ol>
<li>Gmail- rythmgupta74@gmail.com</li>
<li><a href="https://www.linkedin.com/in/rythm-gupta-740836168/?lipi=urn%3Ali%3Apage%3Ad_flagship3_feed%3BgJ2QA9wTSm2zvUL7dEgASg%3D%3D&licu=urn%3Ali%3Acontrol%3Ad_flagship3_feed-nav.settings_view_profile">Linkedin</a></li>
</ol>
<hr>
<form class="" action="mailto:shallugupta@gmail.com" method="post" enctype="text/plain">
<label>Your Name:</label><br>
<input type="text" name="Your name" value=""><br>
<label>Your email</label><br>
<input type="email" name="Your email" value=""><br>
<label>Your Message</label><br>
<textarea name="Your message" rows="8" cols="80"></textarea><br>
<input type="submit" name="" value="submit">
</form>
</body>
</html>