-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.html
255 lines (240 loc) · 9.2 KB
/
events.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
252
253
254
255
<!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/events.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> -->
<!-- AOS -->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
<!--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" id="active">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">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-->
<!--Events Page-->
<div class="main-wrapper">
<div class="row row1">
<div class="header" data-aos="fade-up" data-aos-duration="800">
<h2 class="heading">iOS Fusion</h2>
</div>
<div class="card" data-aos="fade-up" data-aos-duration="1500" data-aos-delay="200">
<img
src="Assets/Events-Page/iosfusion1.png"
alt="People in a Gallery"
class="img"
/>
<p class="txt">
iOS Fusion is a premium workshop conducted by Apple Developers
Group, VIT. Participants in our workshop are taught to create apps
for iOS devices. It's great opportunity for the beginners as it
gives them a chance to experience what it takes to be an iOS
Developer. A plethora of topics are taught and an overall insight
about development process is provided.
</p>
</div>
</div>
<div class="row">
<div class="header" data-aos="fade-up" data-aos-duration="800">
<h2 class="heading">UniDev</h2>
</div>
<div class="card" data-aos="fade-up" data-aos-duration="1500" data-aos-delay="200">
<img
src="Assets/Events-Page/UniDev 1.png"
alt="People in a Gallery"
class="img"
/>
<p class="txt">
UNIDEV, a one-day workshop for both novices and experts, that gives
a chance to explore tricks and tweaks of using Unity Software along
with the powerful SDK Vuforia in order to build something as cool as
Pokémon Go!
</p>
</div>
</div>
<div class="row">
<div class="header" data-aos="fade-up" data-aos-duration="800">
<h2 class="heading">HackGrid</h2>
</div>
<div class="card" style="margin-bottom: 5%;" data-aos="fade-up" data-aos-duration="1500" data-aos-delay="200">
<img
src="Assets/Events-Page/hackcs.png"
alt="People in a Gallery"
class="img"
/>
<p class="txt">
Apple Developers Group conducts a 48 hour long hackathon that
encourages young developers to come up with scintillating technical
solutions to real world problems.
</p>
</div>
</div>
</div>
<!-- Put the content till here -->
<!-- Footer Start -->
<div class="footer" id="footer">
<div class="inner-footer">
<div class="footer-items">
<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">
<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">
<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>
<!-- <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 -->
</div>
<!-- Linking JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js" integrity="sha512-bLT0Qm9VnAYZDflyKcBaQ2gg0hSYNQrJ8RilYldYQ1FxQYoCLtUjuuRuZo+fjqhx/qtq/1itJ0C2ejDxltZVFg==" crossorigin="anonymous"></script>
<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>
<script>
AOS.init({
disable: function() {
var maxWidth = 1024;
return window.innerWidth < maxWidth;
}
});
//refresh page on browser resize
$(window).bind('resize', function(e)
{
console.log('window resized..');
this.location.reload(false); /* false to get page from cache */
/* true to fetch page from server */
});
</script>
</body>
</html>