-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
97 lines (92 loc) · 5.13 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
<!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>The Virasat | CONTACT</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="contact.css">
<link rel="icon" href="logo.png" type="image/icon type">
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-G8LBTS3YKK"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-G8LBTS3YKK');
</script>
</head>
<body>
<div class="header">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="#">Contact & Help</a></li>
</ul>
</nav>
<a href="index.html"><h1><img src="logo.png" alt="logo">The Virasat</h1></a>
<div class="action">
<a href="#follow"><button>Follow</button></a>
<a href="contact.html"><button>Feedback</button></a>
</div>
</div>
<div class="hero">
<h2>Revive , Relive , Relish</h2>
<button>
Explore
</button>
</div>
<form action="https://formspree.io/f/xpzblwjz" method="post">
<section class="text-gray-600 body-font relative">
<form action="https://formspree.io/f/xpzblwjz" method="POST"></form>
<div class="container px-5 py-24 mx-auto">
<div class="flex flex-col text-center w-full mb-12">
<h1 class="sm:text-3xl text-2xl font-medium title-font mb-4 text-gray-900">Contact Us</h1>
<p class="lg:w-2/3 mx-auto leading-relaxed text-base">We would be happy to hear from you</p>
</div>
<div class="lg:w-1/2 md:w-2/3 mx-auto">
<div class="flex flex-wrap -m-2">
<div class="p-2 w-1/2">
<div class="relative">
<label for="name" class="leading-7 text-sm text-gray-600">Name</label>
<input type="text" id="name" name="name" placeholder="You Name Here"
class="w-full bg-gray-100 bg-opacity-50 rounded border border-gray-300 focus:border-indigo-500 focus:bg-white focus:ring-2 focus:ring-indigo-200 text-base outline-none text-gray-700 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out" required>
</div>
</div>
<div class="p-2 w-1/2">
<div class="relative">
<label for="email" class="leading-7 text-sm text-gray-600">Email</label>
<input type="email" id="email" name="email" placeholder="Your Mail ID"
class="w-full bg-gray-100 bg-opacity-50 rounded border border-gray-300 focus:border-indigo-500 focus:bg-white focus:ring-2 focus:ring-indigo-200 text-base outline-none text-gray-700 py-1 px-3 leading-8 transition-colors duration-200 ease-in-out" required>
</div>
</div>
<div class="p-2 w-full">
<div class="relative">
<label for="message" class="leading-7 text-sm text-gray-600">Message</label>
<textarea id="message" name="message" placeholder="Your Message"
class="w-full bg-gray-100 bg-opacity-50 rounded border border-gray-300 focus:border-indigo-500 focus:bg-white focus:ring-2 focus:ring-indigo-200 h-32 text-base outline-none text-gray-700 py-1 px-3 resize-none leading-6 transition-colors duration-200 ease-in-out" required></textarea>
</div>
</div>
<div class="p-2 w-full">
<button
class="flex mx-auto text-white border-0 py-2 px-8 focus:outline-none rounded text-lg">SUBMIT</button>
</div>
</div>
</div>
</div>
</section>
</form>
<div class="footer">
<h3>Copyright © INDION TECHS INC</h3>
<div class="social">
<a href="https://www.linkedin.com/in/the-virasat-9b5a57234/" target="_blank"><img src="linkedin-in-brands.svg" alt="linked-In" id="linked"></a>
<a href="https://www.instagram.com/the_virasat/" target="_blank"><img src="instagram-brands.svg" alt="instagram" id="insta"></a>
<a href="https://www.facebook.com/profile.php?id=100079166267848" target="_blank"><img src="facebook-f-brands.svg" alt="facebook" id="facebook"></a>
</div>
</div>
<script src="script.js"></script>
</body>
</html>