-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
251 lines (224 loc) · 7.8 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- Linking CSS -->
<link type="text/css" rel="stylesheet" href="css/nav-style.css" />
<link type="text/css" rel="stylesheet" href="css/foot-style.css" />
<link type="text/css" rel="stylesheet" href="css/preloader.css" />
<link type="text/css" rel="stylesheet" href="css/contact.css" />
<link type="text/css" rel="stylesheet" href="css/faqs.css" />
<link type="text/css" rel="stylesheet" href="webfontkit-20201125-062530/stylesheet.css" />
<!-- External Links -->
<!-- Mode Toggle Icons -->
<!-- <script src="https://code.iconify.design/1/1.0.4/iconify.min.js"> </script> -->
<!--Font Awesome-->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<!-- Title and Logo-->
<title>ADG | VIT Vellore</title>
<!-- Favicon -->
<link rel="icon" type="image/png" href="Assets/Common-Assets/adglogo.png">
</head>
<body>
<div id="loader">
<img src="Assets/Common-Assets/adggif.gif" class="gif">
</div>
<div id="content">
<!--NAVBAR Starts-->
<nav class="nav-active" id="navbar">
<!-- Logo in Navbar -->
<div class="logo">
<a href="index" style="text-decoration: none; color: #e6e6e6">
<h4>
<img src="Assets/Common-Assets/adglogo.png" class="adg-logo" alt="ADG"> ADG-VIT</h4>
</a>
</div>
<!-- Nav Links -->
<ul class="navlinks">
<li>
<a href="index" class="nav-link nav-link-grow-up">Home</a>
</li>
<li>
<a href="about" class="nav-link nav-link-grow-up">About</a>
</li>
<li>
<a href="partners" class="nav-link nav-link-grow-up">Partners</a>
</li>
<li>
<a href="events" class="nav-link nav-link-grow-up">Events</a>
</li>
<li>
<a href="projects" class="nav-link nav-link-grow-up">Projects</a>
</li>
<li>
<a href="team" class="nav-link nav-link-grow-up">Team</a>
</li>
<li>
<a href="contact" class="nav-link nav-link-grow-up" id="active">Contact Us</a>
</li>
</ul>
<!-- Responsive Burger Menu -->
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
<!--NAVBAR Ends-->
<!-- Contact Page Starts -->
<div class="content">
<!--Contact Form-->
<div class="main1">
<h2 class="contact-us">Contact Us</h2>
<div class="contact2">
<img src="Assets/undraw-contact.svg" alt="Contact Illustration">
</div>
<div class="contact1">
<div class="contact-form" id="contact-form">
<form action="https://formspree.io/f/xbjpzwnb" method="POST">
<input class="form-info" type="text" id="name" name="name" placeholder="Name" required><br>
<input class="form-info" type="email" id="email" name="_replyto" placeholder="Email" required><br>
<input class="form-info" type="tel" id="phone" name="phone" placeholder="Phone" pattern="[0-9]{10}" required> <br>
<textarea id="message" name="message" placeholder="We'd love to hear from you!" rows="4" cols = "50"></textarea><br>
<button class="send-button" type="submit" value="Send" id="send"> Send <i class="fa fa-paper-plane" aria-hidden="true"></i> </button>
</form>
</div>
</div>
</div>
<br><br><br><br><br>
<!--Contact Info Section-->
<h2 class="contact-heading" id="ci">Contact Info</h2>
<br>
<div class="contact-info" id="contact-info">
<p>Address:
<br>
Vellore Institute Of Technology, Vellore 632014, Tamil Nadu</p>
<br>
<p>Phone Number:
<br>
<a href="tel:+918447667487">
<i class="fa fa-link" aria-hidden="true"></i> +91 8447667487</p>
</a>
<br>
<p>E-Mail Address:
<br>
<a href="mailto: [email protected]">
<i class="fa fa-link" aria-hidden="true"></i> [email protected]</p>
</a>
</div>
<br>
<!--More Info Section-->
<h2 class="contact-heading">More Info</h2>
<br>
<div class="more-info" id="more-info">
<p>Apple Developers group is a group of inspired individuals who are committed to
<br>
bring the best of technology to the next generation of programmers.
<br>
Apple Developers group is affiliated to Apple University Program.
</p>
</div>
</div>
<!-- Contact Page Ends -->
<!-- Footer Start -->
<div class="footer" id="footer">
<div class="inner-footer">
<div class="footer-items">
<!--About ADG-->
<div class="foot1">
<img class="logo-footer" src="Assets/Common-Assets/adglogo2.svg" alt="ADG Logo" style="height: auto; width: 120px; padding-right: 5%;">
<img class="logo-footer" src="Assets/Common-Assets/vitvlr.png" alt="VIT Logo" style="height: auto; width: 150px;">
<p>
<br>
Apple Developers Group (ADG) is a name synonymous with excellence, simplicity and dedication.
It is a registered student community at VIT, Vellore established under the Apple University program.
A coterie of talented minds seeking not just success but perfection.
</p>
</div>
</div>
<div class="footer-items">
<!--QuickLinks-->
<div class="foot2">
<h1 class="headQL">Quick Links</h1>
<div class="border">
<ul class="social qlinks">
<a href="index"><li>Home</li></a>
<a href="about"><li>About</li></a>
<a href="partners"><li>Partners</li></a>
<a href="events"><li>Events</li></a>
<a href="projects"><li>Projects</li></a>
<a href="team"><li>Team</li></a>
<a href="domains"><li>Domains</li></a>
<a href="contact"><li>Contact Us</li></a>
</ul>
</div>
</div>
</div>
<div class="footer-items">
<!--Socials-->
<div class="foot3">
<!-- <h1 class="headQL">Stay Connected</h1> -->
<div class="icons" id="icons">
<a href="mailto: [email protected]" target="_blank">
<i class="fa fa-envelope"></i>
</a>
<a href="https://www.facebook.com/vitios/" target="_blank">
<i class="fa fa-facebook"></i>
</a>
<a href="https://www.linkedin.com/company/adgvit/" target="_blank">
<i class="fa fa-linkedin"></i>
</a>
<br>
<a href="https://www.instagram.com/adgvit/" target="_blank">
<i class="fa fa-instagram"></i>
</a>
<a href="https://medium.com/adg-vit" target="_blank">
<i class="fa fa-medium"></i>
</a>
<a href="https://github.com/ADG-VIT" target="_blank">
<i class="fa fa-github"></i>
</a>
</div>
<!--Theme Toggle-->
<!-- <div class="mode-toggle">
<label>
<input class='toggle-checkbox' type='checkbox' id="toggle"></input>
<div class='toggle-slot'>
<div class='sun-icon-wrapper'>
<div class="iconify sun-icon" data-icon="feather-sun" data-inline="false"></div>
</div>
<div class='toggle-button'></div>
<div class='moon-icon-wrapper'>
<div class="iconify moon-icon" data-icon="feather-moon" data-inline="false"></div>
</div>
</div>
</label>
</div> -->
</div>
</div>
</div>
<div class="copyright">
<p>
Developed by ADG | ©
<script>
document.write(new Date().getFullYear());
</script>
All rights reserved.
</p>
</div>
</div>
<!-- End Footer -->
<!-- Linking JavaScript -->
<script src="js/nav-script.js"></script>
<script src="js/preloader.js"></script>
<!-- <script src="js/foot-script.js"></script> -->
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<!--Ion Icons-->
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
</body>
</html>