-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
613 lines (589 loc) · 28.5 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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
<!DOCTYPE html>
<html lang="en">
<head>
<title>CRMD | 2022</title>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta charset="utf-8">
<link rel="shortcut icon" href="favicon.ico">
<meta name="description"
content="The National level Fr. Conceicao Rodrigues Memorial Debate is a prestigious national-level Debate Competition in Mumbai, hosted annually by Fr. Conceicao Rodrigues College of Engineering, Bandra.">
<meta name="keywords"
content="Responsive, Bootstrap, Flat, Android Compatible, Smartphone Compatible, CRMD, Fr, Conceicao, Rodrigues, Debate, CRCE, Bandra, Engineering, 2022, CRMD 2022" />
<meta name="author" content="Ivan Dsilva">
<script type="application/x-javascript">
addEventListener("load", function() {
setTimeout(hideURLbar, 0);
}, false);
function hideURLbar() {
window.scrollTo(0, 1);
}
</script>
<!-- bootstrap-css -->
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all" />
<!--// bootstrap-css -->
<!-- css -->
<link rel="stylesheet" href="css/style.css" type="text/css" media="all" />
<!--// css -->
<!-- font-awesome icons -->
<link href="css/font-awesome.css" rel="stylesheet">
<!-- //font-awesome icons -->
<link rel="stylesheet" href="css/flexslider.css" type="text/css" media="all" property="" />
<!-- Lightbox -->
<link rel="stylesheet" href="css/lightbox.css">
<!-- font -->
<link href="//fonts.googleapis.com/css?family=Pacifico" rel="stylesheet">
<link href="//fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Quicksand:400,500" rel="stylesheet">
<!-- //font -->
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/bootstrap.js"></script>
<script type="text/javascript">
jQuery(document).ready(function ($) {
$(".scroll").click(function (event) {
event.preventDefault();
$('html,body').animate({
scrollTop: $(this.hash).offset().top
}, 1000);
});
});
</script>
<script>
/*!
loadCSS: load a CSS file asynchronously.
*/
function loadCSS(href) {
var ss = window.document.createElement('link'),
ref = window.document.getElementsByTagName('head')[0];
ss.rel = 'stylesheet';
ss.href = href;
// temporarily, set media to something non-matching to ensure it'll
// fetch without blocking render
ss.media = 'only x';
ref.parentNode.insertBefore(ss, ref);
setTimeout(function () {
// set media back to `all` so that the stylesheet applies once it loads
ss.media = 'all';
}, 0);
}
loadCSS('styles.css');
</script>
<noscript>
<!-- Let's not assume anything -->
<link rel="stylesheet" href="styles.css">
</noscript>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<!-- banner -->
<div class="banner">
<div class="header-top-grids">
<div class="header">
<div class="header-left">
<!-- <div class="agileinfo-social-grids">
<ul>
<li><a href="http://crcestudentcouncil.in/"><i class="fa fa-globe"></i></a></li>
<li><a href="https://www.facebook.com/frcrce.studentscouncil"><i
class="fa fa-facebook"></i></a></li>
<li><a href="https://www.instagram.com/frcrce_bandra/"><i class="fa fa-instagram"></i></a>
</li>
<li><a href="https://www.snapchat.com/add/crcecouncil"><i class="fa fa-snapchat"></i></a>
</li>
</ul>
</div> -->
<center>
<div class="w3layouts-logo">
<h1>
<a href="index.html">
<img src="/images/stuco_logo.png" alt="logo" width="80" height="80">
CRMD <span>2022</span></a>
</h1>
</div>
</center>
<div class="clearfix"> </div>
</div>
</div>
<div class="top-nav">
<div class="top-nav-info">
<nav class="navbar navbar-default">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Menu</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a class="active" href="index.html">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="#rules">Rules and Prizes</a></li>
<!-- <li class="dropdown">
<a href="codes.html" class="dropdown-toggle" data-hover="Pages" data-toggle="dropdown">Pages <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="icons.html">Icons</a></li>
<li><a href="codes.html">Short Codes</a></li>
</ul>
</li> -->
<li><a href="#testimonials">Testimonials</a></li>
</ul>
<div class="clearfix"> </div>
</div>
</nav>
</div>
</div>
</div>
<div class="header-bottom">
<!-- w3layouts-slider -->
<div class="w3layouts-slider">
<div class="container">
<div class="slider">
<div class="callbacks_container">
<ul class="rslides callbacks callbacks1" id="slider4">
<li>
<div class="wthree-banner-grids">
<div class="col-md-5 agileinfo-banner-right">
<h5>Fr. Conceicao Rodrigues Memorial Debate</h5>
<p>An inter-collegiate, national level debate competition hosted by Fr.
Conceicao Rodrigues College of Engineering.</p>
</div>
<div class="col-md-7 agileits-banner-left">
<h3>7<sup>th</sup>-8<sup>th</sup> Oct</h3>
<h4>2022</h4>
</div>
<div class="clearfix"> </div>
</div>
<div class="banner-border"> </div>
<div class="">
<center>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSejo3B8iguX9VsiXGLosl2jyND71jLDdIhapPBvLtQBEwTRaQ/viewform?usp=sf_link"
target="_blank">
<button class="button-56" role="button">Register</button>
</a>
</center>
</div>
</li>
<li>
<div class="wthree-banner-grids">
<div class="col-md-5 agileinfo-banner-right">
<h5>An Intermediate Debate Format</h5>
<p>The best of both worlds, League Rounds and then Knockouts while still
retaining the decorum &etiquettes from the Oxford Style of
debating.</p>
</div>
<div class="col-md-7 agileits-banner-left">
<h3>24<sup>th</sup> Year</h3>
<h4>(1999-2022)</h4>
</div>
<div class="clearfix"> </div>
</div>
<div class="banner-border"> </div>
<div class="w3-button">
<center>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSejo3B8iguX9VsiXGLosl2jyND71jLDdIhapPBvLtQBEwTRaQ/viewform?usp=sf_link"
target="_blank">
<button class="button-56" role="button">Register</button>
</a>
</center>
</div>
</li>
</ul>
</div>
<script src="js/responsiveslides.min.js"></script>
<script>
// You can also use "$(window).load(function() {"
$(function () {
// Slideshow 4
$("#slider4").responsiveSlides({
auto: true,
pager: true,
nav: true,
speed: 500,
namespace: "callbacks",
before: function () {
$('.events').append("<li>before event fired.</li>");
},
after: function () {
$('.events').append("<li>after event fired.</li>");
}
});
});
</script>
<!--banner Slider starts Here-->
</div>
</div>
</div>
<!-- //w3layouts-slider -->
</div>
</div>
<!-- //banner -->
<!-- about us -->
<div class="about-w3layouts" id="about">
<div class="container">
<div class="agileits-heading">
<h2>Welcome</h2>
</div>
<div class="about-top-grids glass">
<div class="col-md-12 w3-about-left">
<h5>About CRMD 2022</h5>
<p>
India is the world's most populous democracy,
with a population of over 1.2 billion people. The
country's integration into the global economy
has been accompanied by economic growth
over the last decade.
India is now a global player. Nonetheless, India
continues to face poverty and other
challenges associated with a developing
economy. India's international trade and
military posture have grown as its economy
has recovered. Indians are generally
supportive of India's global engagement. </p>
<p> Many people, however, have no opinion on such
global issues; international relations are far
removed from their daily concerns. The
intangible cultural heritage of India stems from
the country's 5000-year-old culture and
civilization. It has had a significant impact on
the religious life of most of Asia.
India has also increased its influence in other
parts of the world, both directly and indirectly.
The significant influence of this intangible
aspect of India's religious and spiritual heritage
provides a profound insight into India's own
history, culture, and civilisation. Let us
remember that heritage does not end with
monuments or art collections. </p>
<p> It also includes traditions or living expressions
inherited from our forefathers and passed
down to our descendants.
In the changing global environment of research
and development, where more of an
interdisciplinary approach is becoming the
fundamental driver of technological
innovations, India may choose to take up some
of the revenue-generating industries and reengineer products at low cost to compete
with their global makers, or take up pioneering
initiatives in the field of basic research to
change the face of human life.
</p>
<p>We welcome you to our theme, <strong><em>The Indian Agenda: Global Influence and
Dominance</em></strong></p>
<br>
<div class="w3l-button">
<a href="#services">More</a>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
<!-- //about us -->
<!-- services -->
<div class="services" id="services">
<div class="container">
<div class="agileits-heading">
<h3>Highlights</h3>
</div>
<div class="services-grids">
<div class="col-md-6 wthree-services-grid">
<div class="wthree-services-icon">
<i class="fa fa-asterisk" aria-hidden="true"></i>
</div>
<div class="wthree-services-info">
<h5>Teams from all over the Country</h5>
<p>Teams will go through 3 league rounds and then proceed to knockouts.</p>
</div>
</div>
<div class="col-md-6 wthree-services-grid">
<div class="wthree-services-icon">
<i class="fa fa-user" aria-hidden="true"></i>
</div>
<div class="wthree-services-info">
<h5>Exciting Rewards and Great Exposure</h5>
<p>Cash prizes upto Rs.55,000 up for grabs.
!!
</p>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
<!-- <div class="wrapper">
<div class="count-container">
<!-- <i class="fas fa-utensils"></i>
<span class="num" data-val="400">000</span>
<span class="text">Meals Delivered</span>
</div>
<div class="count-container">
<!-- <i class="fas fa-smile-beam"></i>
<span class="num" data-val="340">000</span>
<span class="text">Happy Customers</span>
</div>
<div class="count-container">
<!-- <i class="fas fa-list"></i>
<span class="num" data-val="225">000</span>
<span class="text">Menu Items</span>
</div>
<div class="count-container">
<!-- <i class="fas fa-star"></i>
<span class="num" data-val="280">000</span>
<span class="text">Five Stars</span>
</div>
</div> -->
<!-- //services -->
<!-- services-bottom -->
<div class="services-bottom" id="rules">
<div class="container">
<div class="agileits-heading">
<h3>Rules and Prizes</h3>
</div>
<div class="wthree-services-bottom-grids">
<div class="col-md-6 wthree-services-left" style="text-align:center;">
<a href="./images/crmd_poster.jpeg" target="_blank"><img src="./images/crmd_poster.jpeg"
alt="theme" /></a>
</div>
<div class="col-md-6 wthree-services-right">
<div class="wthree-services-right-top">
<h4>Basic Structure</h4>
<p>The debate will comprise of the following rounds:<br>
<li>3 League rounds</li>
<li>Quarter Finals</li>
<li>Semi-Finals</li>
<li>Final</li>
</p>
</div>
<div class="wthree-services-right-bottom">
<div class="services-right-bottom-bottom">
<div class="services-bottom-icon">
<i class="fa fa-bell" aria-hidden="true"></i>
</div>
<div class="services-bottom-info">
<h5>Prizes</h5>
<p>First Place: Rs. 30,000
<br>Second Place: Rs. 15,000
<br>Best Speaker: Rs. 5,000
<br>Best Adjudicator: Rs. 5,000
</p>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="wthree-services-right-bottom">
<div class="services-right-bottom-bottom">
<div class="services-bottom-icon">
<i class="fa fa-star" aria-hidden="true"></i>
</div>
<div class="services-bottom-info">
<h5>More Details</h5>
<p><a href="https://drive.google.com/file/d/1olcwxN9BEmxMrnNbvizh0s8igleES0tN/view?usp=sharing"
target="_blank">CRMD 2022 Brochure</a></p>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="clearfix"> </div>
</div>
<div class="clearfix"> </div>
</div>
<div class="wthree-services-bottom-grids w3-services-bottom">
<div class="col-md-12 wthree-services-right text-center">
<div class="wthree-services-right-bottom">
<h2>The Trophy Collection</h2>
</div>
<div class="clearfix"> </div>
</div>
<div class="col-md-12 text-center" id="trophy">
<img src="./images/trophy.jpg" alt="trophy" class="img-responsive center-block" />
</div>
<div class="clearfix"> </div>
</div>
</div>
</div>
<!-- //services-bottom -->
<!-- testimonials -->
<div class="testimonials" id="testimonials">
<div class="agileits-heading testimonials-heading">
<h3>Testimonials</h3>
</div>
<!--
<div class="wthree_testimonial_grids">
<div class="col-md-12 wthree_testimonial_grid_left">
<div class="w3ls_testimonial_grid_left_grid">
<div class="col-xs-6 agileinfo_testimonials_left">
<img src="images/mb.jpg" alt="mb" class="img-responsive" />
<h4>Mahesh Bhatt</h4>
<p>Director, Producer and Screenwriter</p>
</div>
<div class="col-xs-6 agileinfo_testimonials_right">
<div class="agileits_testimonials_right_grid">
<p>No wonder films don’t always do well. After seeing a debate like this where so many
intellectual young minds fight it out who would want to go to a movie theatre?</p>
</div>
</div>
<div class="clearfix"> </div>
</div>
<div class="w3ls_testimonial_grid_left_grid w3l_testimonial_grid_left_grid">
<div class="col-xs-6 agileinfo_testimonials_right agileits_w3layouts_farm_man">
<div class="agileits_testimonials_right_grid w3_testimonials_right_grid">
<p>Way beyond my expectations. Never expected a technical college to hold such a
non-technical Debate!
</p>
</div>
</div>
<div class="col-xs-6 agileinfo_testimonials_left">
<img src="images/dt.jpg" alt=" " class="img-responsive" />
<h4>Dolly Thakore</h4>
<p>Theatre Actress and Casting Director</p>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div> -->
<div class="test-cont">
<div class="box">
<div class="img-box">
<img src="/images/mb.jpg">
</div>
<p>No wonder films don’t always do well. After seeing a debate like this where so many
intellectual young minds fight it out who would want to go to a movie theatre?</p>
<h4>Mahesh Bhatt<br><span>Director, Producer and Screenwriter</span></h4>
</div>
<div class="box">
<div class="img-box">
<img src="/images/dt.jpg">
</div>
<p>Way beyond my expectations. Never expected a technical college to hold such a
non-technical Debate!</p>
<h4>Dolly Thakore<br><span>Theatre Actress and Casting Director</span></h4>
</div>
</div>
</div>
<!-- //testimonials -->
<!-- footer -->
<footer class="jarallax">
<div class="container">
<div class="agile-footer-grids">
<div class="col-md-12 agile-footer-grid">
<h4>About CRMD</h4>
<div class="agile-footer-info">
<p>The National level Fr. Conceicao Rodrigues Memorial Debate is a prestigious Debate
Competition in Mumbai, hosted annually by Fr. Conceicao Rodrigues College of
Engineering,
Bandra. It is a 2- day event organized by the Students’ Council, CRCE. The debate aims
to
provide a forum for today’s youth to articulate views and engage in a dialogue on
various
affairs that affect the life of the common man.</p>
</div>
<div class="w3l-button">
<a href="https://en.m.wikipedia.org/wiki/Fr._Conceicao_Rodrigues_Memorial_Debate"
target="_blank">More</a>
</div>
</div>
<div class="clearfix"> </div>
</div>
</div>
<div class="footer-social-links">
<a href="https://www.facebook.com/frcrce.studentscouncil" title="Facebook" target="_blank"><i
class="fa fa-facebook"></i></a>
<a href="https://www.instagram.com/frcrce_official/?igshid=1xzzfigzk6x4l" title="Instagram"
target="_blank"><i class="fa fa-instagram"></i></a>
<a href="https://www.linkedin.com/school/fr.-conceicao-rodrigues-college-of-engineering/mycompany/"
title="LinkedIn" target="_blank"><i class="fa fa-linkedin"></i></a>
</div>
</footer>
<!-- //footer -->
<!-- copyright -->
<div class="agileits-w3layouts">
<div class="container">
<p>© 2022 Students' Council CRCE. All rights reserved | Designed & Developed by <a
href="https://www.linkedin.com/in/ivan-dsilva/" target="_blank">Ivan Dsilva </a></p>
</div>
</div>
<!-- //copyright -->
<script src="js/responsiveslides.min.js"></script>
<script src="js/jarallax.js"></script>
<script src="js/SmoothScroll.min.js"></script>
<script type="text/javascript">
/* init Jarallax */
$('.jarallax').jarallax({
speed: 0.5,
imgWidth: 1366,
imgHeight: 768
})
</script>
<script type="text/javascript" src="js/move-top.js"></script>
<script type="text/javascript" src="js/easing.js"></script>
<!-- here stars scrolling icon -->
<script type="text/javascript">
$(document).ready(function () {
/*
var defaults = {
containerID: 'toTop', // fading element id
containerHoverID: 'toTopHover', // fading element hover id
scrollSpeed: 1200,
easingType: 'linear'
};
*/
$().UItoTop({
easingType: 'easeOutQuart'
});
});
</script>
<!-- //here ends scrolling icon -->
<script type="text/javascript">
$(window).load(function () {
$("#flexiselDemo1").flexisel({
visibleItems: 3,
animationSpeed: 1000,
autoPlay: true,
autoPlaySpeed: 3000,
pauseOnHover: true,
enableResponsiveBreakpoints: true,
responsiveBreakpoints: {
portrait: {
changePoint: 480,
visibleItems: 1
},
landscape: {
changePoint: 640,
visibleItems: 2
},
tablet: {
changePoint: 768,
visibleItems: 3
}
}
});
});
</script>
<script>
let valueDisplays = document.querySelectorAll(".num");
let interval = 4000;
valueDisplays.forEach((valueDisplay) => {
let startValue = 0;
let endValue = parseInt(valueDisplay.getAttribute("data-val"));
let duration = Math.floor(interval / endValue);
let counter = setInterval(function () {
startValue += 1;
valueDisplay.textContent = startValue;
if (startValue == endValue) {
clearInterval(counter);
}
}, duration);
});
</script>
<script type="text/javascript" src="js/jquery.flexisel.js"></script>
<script src="js/smoothscroll.js"></script>
</body>
</html>