-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
261 lines (232 loc) · 13.7 KB
/
index.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
256
257
258
259
260
261
<html>
<head>
<script>
var slideIndex = 1;
showSlides(slideIndex);
function plusSlides(n) {
showSlides(slideIndex += n);
}
function currentSlide(n) {
showSlides(slideIndex = n);
}
function showSlides(n) {
var i;
var slides = document.getElementsByClassName("mySlides");
var dots = document.getElementsByClassName("dot");
if (n > slides.length) {slideIndex = 1}
if (n < 1) {slideIndex = slides.length}
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
for (i = 0; i < dots.length; i++) {
dots[i].className = dots[i].className.replace(" active", "");
}
slides[slideIndex-1].style.display = "block";
dots[slideIndex-1].className += " active";
}
</script>
<script>
// Set the date we're counting down to
var countDownDate = new Date("Dec 25, 2019 15:37:25").getTime();
// Update the count down every 1 second
var x = setInterval(function() {
// Get today's date and time
var now = new Date().getTime();
// Find the distance between now and the count down date
var distance = countDownDate - now;
// Time calculations for days, hours, minutes and seconds
var days = Math.floor(distance / (1000 * 60 * 60 * 24));
var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
var seconds = Math.floor((distance % (1000 * 60)) / 1000);
// Output the result in an element with id="demo"
document.getElementById("days").innerHTML = days;
document.getElementById("hours").innerHTML = hours;
document.getElementById("minutes").innerHTML = minutes;
document.getElementById("seconds").innerHTML = seconds;
// If the count down is over, write some text
if (distance < 0) {
clearInterval(x);
document.getElementById("demo").innerHTML = "EXPIRED";
}
}, 1000);
</script>
<style>
.mhead{font-family: "Helvetica Neue Custom", "Helvetica Neue", Helvetica, Arial, sans-serif}
</style>
<link rel="shortcut icon" href="tedx.ico"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TEDxREVAUniversity</title>
<link href="mars.css" rel="stylesheet" type="text/css">
<link href="extrastyle.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Comfortaa" rel="stylesheet">
<script>
var counter=0;
function sidenavfunc(){
counter++;
if(counter%2==0)
hidesidenav();
else
showsidenav();
}
function showsidenav(){
document.getElementById("nav1").style.display=("block");
document.getElementById("switch").innerHTML=("X");
}
function hidesidenav(){
document.getElementById("nav1").style.display=("none");
document.getElementById("switch").innerHTML=("=");
}
</script>
</head>
<body onload="hidesidenav(); showSlides(1);">
<div class="floatnav">
<a href="https://www.townscript.com/e/tedxrevauniversity-433121"><button class="floattab booknow">Book Now</button></a>
<a href="sponsors.html"><button class="floattab">Sponsors</button></a>
<a href="#home"><button class="floattab">Home</button></a>
<a href="#about"><button class="floattab">About Us</button></a>
<a href="#fables"><button class="floattab">Fables</button></a>
<a href="#speakers"><button class="floattab">Speakers</button></a>
<a href="#team"><button class="floattab">Team</button></a>
<a href="#contact"><button class="floattab">Contact Us</button></a>
</div>
<div class="sidenav inverted">
<div class="row"><span class="left"> </span><button id="switch" style="font-size:28px;" class="mico inverted left" onclick="sidenavfunc();">=</button>
</div>
<div id="nav1">
<a href="sponsors.html"><div class="mtab">Sponsors</div></a>
<a href="#home"><div class="mtab" onclick="hidesidenav();">Home</div></a>
<a href="#about"><div class="mtab" onclick="hidesidenav();">About Us</div></a>
<a href="#fables"><div class="mtab" onclick="hidesidenav();">Fables</div></a>
<a href="#speakers"><div class="mtab" onclick="hidesidenav();">Speakers</div></a>
<a href="#team"><div class="mtab" onclick="hidesidenav();">Team</div></a>
<a href="#contact"><div class="mtab" onclick="hidesidenav();">Contact Us</div></a>
</div>
</div>
<section class="fullscreen" id="home">
<div class="heading">
<p>
<span class="red" style="font-weight: 900;">TEDx</span>REVAUniversity
<br>
Talk Starts In
<p>
</div>
<div class="timer">
<div class="circle">
<span class="number" id="days">99</span>
<br>
Days
</div>
<div class="circle">
<span class="number" id="hours">99</span>
<br>
Hours
</div>
<div class="circle">
<span class="number" id="minutes">99</span>
<br>
Minutes
</div>
<div class="circle">
<span class="number" id="seconds">99</span>
<br>
Seconds
</div>
<br><br><br><br>
<a href="index.html"><button class="book xlarge alert">Book Now</button></a>
</div>
</section>
<section class="page_container" id="about">
<!-- Slideshow container -->
<div class="slideshow-container">
<!-- Full-width slides/quotes -->
<div class="mySlides about_container">
<h1 class="heading red">About TED</h1>
<p class="description jfy">
TED is a global non-profit organization to uphold the spirit of
'Ideas Worth Spreading '. It was started in 1984 as a small conference
bringing together people from three worlds: Technology Entertainment
and Design, to talk about how their ideas were converging. The annual
TED conference invites world's leading thinkers and Doers. TED has been
host to an illustrious repertoire of speakers including Bill Clinton,
Al Gore, Gordon Brown, Billy Graham, Richard Dawkins, Richard Stallman,
and Bill Gates.
</p>
</div>
<div class="mySlides about_container">
<h1 class="heading red">About TEDx</h1>
<p class="description jfy">
In the spirit of ideas worth spreading, TEDx is a program of local,
self-organized events that bring people together to share a TED-like
experience. At a TEDx event, TED Talks video and live speakers combine
to spark deep discussion and connection. These local, self-organized
events are branded TEDx, where x = independently organized TED event.
The TED Conference provides general guidance for the TEDx program,
but individual TEDx events are self-organized.
</p>
</div>
<div class="mySlides about_container">
<h1 class="heading red">About TEDxREVAUniversity</h1>
<p class="description jfy">
TEDxREVAUniversity is an independently organised TED event. This TEDx event is an collective endeavour of students from different schools of REVA University. The aim of this event is to share great stories and diversified ideas to our community of 10,000+ students, faculties and staff in order to inspire them to innovate and to bring the change they want to see in the world. The event will take place in the newly renovated, state of the art, Kuvempu Auditorium in REVA University, Bengaluru. The event will feature a number of speakers from various disciplines and cultures, who will narrate their stories and share their ideas with people who seek a deeper understanding of the world. We believe and promote TED’s mission of 'spreading ideas’ and their agenda to make great ideas accessible and spark conversation. TEDxREVAUniversity will present ideas which are powerful enough to change attitudes, lives and, ultimately, the world.
</p>
</div>
<!-- Next/prev buttons -->
<!--<a class="prev" onclick="plusSlides(-1)">❮</a>-->
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<!-- Dots/bullets/indicators -->
<div class="dot-container">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
<span class="dot" onclick="currentSlide(3)"></span>
</div>
</section>
<section class="page_container" style="padding: 40px; padding-top: 0px;" id="fables">
<h1 class="heading red">Fables</h1>
<p class=" description jfy">
Usually, fables are the stories that features inanimate objects and forces of nature that are brought to life and that illustrates or leads to a particular moral lesson and takes us through a lifelike journey, portraying good and evil and we absorb an understanding of importance of right and wrong. But similarly every individual have a story, some short and some long, where they live and love, make mistake, win and fail, where the choices made by them lead to an effect as an consequences of the decisions made and choices taken. These effects teaches us many lessons and gives us many ideas. The ideas that are learnt are applicable to all and always contain the good and right choices of life, hence they must be spread to fill the world with good and right and every story is worth hearing.
</p>
</section>
<section class="page_container" id="speakers">
<h1 class="heading red">Speakers</h1>
<p class=" description jfy">
Thinkers. Doers. Idea-generators. TEDx speakers are people who are willing to inform and inspire, surprise and delight. They come from all sorts of background and have experience in various fields of work. They come up with world changing ideas and give inspiration to million others. For TEDxREVAUniversity, we contacted and invited few such people who are willing to share their ideas with us, and are ready to inspire us.
</p><br><br>
<a href="speakers.html"><button class="book large alert">Meet The Speakers</button></a><br><br>
</section>
<section class="page_container" id="team">
<h1 class="heading red">The Team</h1>
<p class=" description jfy">
To host an event of this magnitude, we needed a team. A team which would stuck together in hard times and help each other out. So, we searched for them, and gathered the best people of their fields. We worked together and here we are, ready to face the challenge, ready to pull this off and shine above all. </p><br><br>
<a href="team.html"><button class="book large alert">Meet Our Team</button></a><br><br>
</section>
<section class=" primary" id="contact">
<h1 class="heading">Get In Touch</h1>
<div class="col large6">
<a href="faq.pdf"><h1 class="padleft" style="color:#FFF;">Frequently Asked Questions</h1><br></a>
<a href="pp.pdf"><h1 class="padleft" style="color:#FFF;">Privacy Policy</h1></a><br>
<a href="schedule.pdf"><h1 class="padleft" style="color:#FFF;">Schedule</h1></a><br>
<h1 class="padleft" style="color:#FFF;">Follow Us On</h1><br>
<div class="col large2"></div>
<div class="col"><img src="img/fb.png" class="followicon" /></div>
<div class="col"><img src="img/tw.png" class="followicon" /></div>
<div class="col"><img src="img/ig.png" class="followicon" /></div>
</div>
<div class="col large6">
<div class="padleft">
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d15542.89373821591!2d77.6346617!3d13.1166989!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xdee225fe28f600f6!2sREVA+University!5e0!3m2!1sen!2sin!4v1522677320198" style="border: none; border-radius:10px; height: 50%; width: 100%; " allowfullscreen="yes"></iframe>
</div>
</div><br><br><br><br>
<div class="alert" style="margin-top:2%">
<div class="col large7">
<h3 style="color: aliceblue" class="padleft">This independent TEDx event is operated under license from TED.</h3>
</div>
<div class="col large4">
<h3 style="color: aliceblue" class="padleft">© TEDxREVAUniversity 2019</h3>
</div>
</div>
</section>
<a href="https://www.townscript.com/e/tedxrevauniversity-433121"><img class="bnbut polaroid" src="img/tick.png" /></a>
</body>
</html>