-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcontact.html
109 lines (93 loc) · 5.55 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png" class="favicon">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png" class="favicon">
<link rel="manifest" href="favicon/site.webmanifest">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.7/css/all.css">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<title>Contact</title>
<!-- <script src="js/script.js" defer></script> -->
<link rel="stylesheet" href="css/style.css">
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="js/script.js"></script>
</head>
<body>
<header>
<div class="logo">
<a href="./index.html"><img class="logo" src="./images/logo.png" href="./index.html" alt="logo"></a>
</div>
<nav id="hi">
<ul>
<li class="hide"><a id="hide" href="./index.html">Home</a></li>
<li class="hide"><a id="hide" href="./about.html">About</a></li>
<li class="hide"><a id="hide" href="https://anubhav-madhav-blogs.herokuapp.com/">Blog</a></li>
<li class="hide"><a id="hide" href="./projects.html">Projects</a></li>
<li class="hide"><a id="hide" href="./accomplishments.html">Accomplishments</a></li>
<li class="hide"><a id="hide" href="./gallery.html">Gallery</a></li>
<li class="hide"><a id="hide" href="./contact.html" class="active">Contact</a></li>
</ul>
</nav>
<div class="menu-toggle"><i class="fas fa-bars"></i></div>
</header>
<main>
<div class="contact-wrap">
<div class="contact">
<div class="email">
<h2>Email:</h2>
<h2 style="position: relative; left: 60px;"> <a href=mailto:[email protected]>[email protected]</a></h2>
<!-- <h2 style="padding-top: 10px;">Contact No.:</h2>
<h2 style="position: relative; left: 60px;"><a href="tel:9725750798">9725750798</a></h2> -->
</div>
<div class="or">
<h1>OR</h1>
<h1 class="drop">drop a message here</h1>
</div>
<div class="form">
<form action="mailto:[email protected]?subject=MessageFromWebsite" method="post" enctype="text/plain" id="myform">
<label>Name:</label>
<input type="text" name="yourName"><br>
<label>Email:</label>
<input type="email" name="yourEmail"><br>
<label>Message:</label><br>
<textarea rows="10" cols="30" name="yourMessage"></textarea><br>
<a target="_blank" class="button" href="mailto:[email protected]" id="mailtolink"><span>Submit</span></a>
<!-- <a href="mailto:[email protected]?subject=MessageFromWebsite"> <button type="submit" class="button" action="mailto:[email protected]?subject=MessageFromWebsiteMobile" method="post" enctype="text/plain"><span>Submit</span></button></a> -->
<!-- <input type="submit" class="button"><br> -->
</form>
</div>
</div>
<div class="vertical">
</div>
<div class="social">
<h1>Let's get in touch</h1>
<div class="smicons">
<a href="https://www.linkedin.com/in/anubhav-madhav/"><i class="fab fa-linkedin-in"></i></a>
<a href="https://www.facebook.com/profile.php?id=100004730176288"><i class="fab fa-facebook"></i></a>
<a href="https://github.com/AnubhavMadhav"><i class="fab fa-github"></i></a>
<a href="https://www.instagram.com/anubhav_madhav/"><i class="fab fa-instagram"></i></a>
<a href="https://twitter.com/Anubhav_Madhav"><i class="fab fa-twitter"></i></a>
<div class="mobile">
<a href="https://www.google.com/search?q=Anubhav+Madhav"><i class="fab fa-google"></i></a>
<!-- <a href="https://twitter.com/obscura_iiitv"><i class="fab fa-whatsapp"></i></a> -->
<a href="https://www.quora.com/profile/Anubhav-Madhav"><i class="fab fa-quora"></i></a>
<a href="https://www.youtube.com/channel/UCmWhy6bKuoK31HHuzOywujw?view_as=subscriber"><i class="fab fa-youtube"></i></a>
<a href="https://www.snapchat.com/add/anubhavmadhav20"><i class="fab fa-snapchat-ghost"></i></a>
<a href="https://dribbble.com/anubhav_madhav"><i class="fab fa-dribbble"></i></a>
</div>
</div>
</div>
</div>
</main>
<footer>
<center>
<h6> <span> <i class="fas fa-copyright"></i></span>
<a href="./contact.html">Anubhav Madhav</a>
</h6>
</center>
</footer>
</body>
</html>