-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
510 lines (456 loc) · 22 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>BVICampus</title>
<!-- Material Design fonts -->
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Roboto:300,400,500,700" type="text/css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="fancybox/jquery.fancybox.css" type="text/css" media="screen" />
<link href="css/animate.css" rel="stylesheet" type="text/css">
<!-- Bootstrap Material Design -->
<link href="css/material-design.css" rel="stylesheet">
<link href="css/ripples.min.css" rel="stylesheet">
<link href="css/snackbar.min.css" rel="stylesheet">
<!-- Custome Styles -->
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<!--Header_section-->
<header id="header_wrapper">
<div class="navbar navbar-default">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-responsive-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="javascript:void(0)"><i class="material-icons">filter_hdr</i> BVICampus</a>
</div>
<div id="main-nav" class="navbar-collapse collapse navbar-responsive-collapse navStyle">
<ul class="nav navbar-nav" id="mainNav">
<li class="active"><a href="#hero_section" class="scroll-link">Home</a></li>
<li><a href="#aboutUs" class="scroll-link">About</a></li>
<li><a href="#service" class="scroll-link">Services</a></li>
<li><a href="#Portfolio" class="scroll-link">Portfolio</a></li>
<li><a href="#clients" class="scroll-link">Clients</a></li>
<li><a href="#team" class="scroll-link">Team</a></li>
<li><a href="#contact" class="scroll-link">Contact</a></li>
</ul>
</div>
</div>
</div>
</header>
<!--Hero_Section-->
<section id="hero_section" class="top_cont_outer">
<div class="hero_wrapper">
<div class="container">
<div class="hero_section">
<div class="row">
<div class="col-lg-5 col-sm-7">
<div class="top_left_cont zoomIn wow animated">
<h2>Material Design <strong>Awesome</strong> Templates</h2>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text printer took a galley of type and scrambled it to make a type specimen.</p>
<a href="#service" class="btn btn-raised btn-lg">Read more</a> </div>
</div>
<div class="col-lg-7 col-sm-5">
<img src="img/test.png" height=400 width=575 class="zoomIn wow animated" alt="" />
</div>
</div>
</div>
</div>
</div>
</section>
<!--Hero_Section-->
<!--Aboutus-->
<section id="aboutUs">
<div class="inner_wrapper">
<div class="container">
<h2>About BVICAM</h2>
<div class="inner_section">
<div class="row">
<div class=" col-lg-4 col-md-4 col-sm-4 col-xs-12 pull-right"><img src="img/building.png" class="withripple delay-03s animated wow zoomIn" alt=""></div>
<div class=" col-lg-7 col-md-7 col-sm-7 col-xs-12 pull-left">
<div class=" delay-01s animated fadeInDown wow animated">
<h3>Lorem Ipsum has been the industry's standard dummy text ever..</h3><br/>
<p style="text-align: justify; text-justify: inter-word;">Bharati Vidyapeeth's Institute of Computers Applications and Management (BVICAM), New Delhi, is one of the 187 institutions under Bharati Vidyapeeth, Pune. With a clear vision and mission to serve the cause of higher education in India, the Institute started conducting Master of Computer Applications (MCA) programme with effect from the Academic year 2002-2003. The Institute is affiliated to Guru Gobind Singh Indraprastha University (GGSIPU), Sector 16C Dwarka, New Delhi-78. The Institute is also approved by the All India Council for Technical Education (AICTE), Ministry of HRD, Government. of India, New Delhi.</p> <br/>
<p style="text-align: justify; text-justify: inter-word;">With its excellent Infrastructural and Instructional facilities for the students, BVICAM provides personalized attention to each student through its unique Student Teacher Wardship programme, having a teacher mentor for every student to monitor and facilitate his/her all round personality development.</p>
</div>
<!--<div class="work_bottom"> <span>Want to know more..</span>-->
<a href="#contact" class="btn btn-raised btn-lg">Contact Us</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Aboutus-->
<!--Service-->
<section id="service">
<div class="container">
<h2>Services</h2>
<div class="service_wrapper">
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-4">
<div class="service_block withripple">
<div class="service_icon delay-03s animated wow zoomIn"> <span><i class="material-icons">card_membership</i></span> </div>
<h3 class="animated fadeInUp wow">Android</h3>
<p class="animated fadeInDown wow">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text.</p>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4 borderLeft">
<div class="service_block withripple">
<div class="service_icon icon2 delay-03s animated wow zoomIn"> <span><i class="material-icons">favorite_border</i></span> </div>
<h3 class="animated fadeInUp wow">Apple IOS</h3>
<p class="animated fadeInDown wow">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text.</p>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4 borderLeft">
<div class="service_block withripple">
<div class="service_icon icon3 delay-03s animated wow zoomIn"> <span><i class="material-icons">hourglass_empty</i></span> </div>
<h3 class="animated fadeInUp wow">Design</h3>
<p class="animated fadeInDown wow">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text.</p>
</div>
</div>
</div>
<div class="row borderTop">
<div class="col-lg-4 col-md-4 col-sm-4 mrgTop">
<div class="service_block withripple">
<div class="service_icon delay-03s animated wow zoomIn"> <span><i class="material-icons">launch</i></span> </div>
<h3 class="animated fadeInUp wow">Concept</h3>
<p class="animated fadeInDown wow">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text.</p>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4 borderLeft mrgTop">
<div class="service_block withripple">
<div class="service_icon icon2 delay-03s animated wow zoomIn"> <span><i class="material-icons">lightbulb_outline</i></span> </div>
<h3 class="animated fadeInUp wow">User Research</h3>
<p class="animated fadeInDown wow">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text.</p>
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-4 borderLeft mrgTop">
<div class="service_block withripple">
<div class="service_icon icon3 delay-03s animated wow zoomIn"> <span><i class="material-icons">info_outline</i></span> </div>
<h3 class="animated fadeInUp wow">User Experience</h3>
<p class="animated fadeInDown wow">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--Service-->
<!-- Portfolio -->
<section id="Portfolio" class="content">
<!-- Container -->
<div class="container portfolio_title">
<!-- Title -->
<div class="section-title">
<h2>Portfolio</h2>
</div>
<!--/Title -->
</div>
<!-- Container -->
<div class="portfolio-top"></div>
<!-- Portfolio Filters -->
<div class="portfolio">
<div id="filters" class="sixteen columns">
<ul class="clearfix">
<li><a id="all" href="#" data-filter="*" class="withripple active">
<h5>All</h5>
</a></li>
<li><a class="withripple" href="#" data-filter=".prototype">
<h5>Prototype</h5>
</a></li>
<li><a class="withripple" href="#" data-filter=".design">
<h5>Design</h5>
</a></li>
<li><a class="withripple" href="#" data-filter=".android">
<h5>Android</h5>
</a></li>
<li><a class="withripple" href="#" data-filter=".appleIOS">
<h5>Apple IOS</h5>
</a></li>
<li><a class="withripple" href="#" data-filter=".web">
<h5>Web App</h5>
</a></li>
</ul>
</div>
<!--/Portfolio Filters -->
<!-- Portfolio Wrapper -->
<div class="isotope fadeInLeft animated wow grid" style="position: relative; overflow: hidden; height: 480px;" id="portfolio_wrapper">
<!-- Portfolio Item -->
<figure style="position: absolute; left: 0px; top: 0px; transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1); width: 337px; opacity: 1;" class="portfolio-item one-four appleIOS isotope-item effect-oscar">
<div class="portfolio_img">
<img src="img/portfolio_pic1.jpg" alt="Portfolio 1"> </div>
<figcaption>
<div>
<a href="img/portfolio_pic1.jpg" class="fancybox">
<h2>Awesome <span>Material</span></h2>
<p>He used to clean code.</p>
</a>
</div>
</figcaption>
</figure>
<!--/Portfolio Item -->
<!-- Portfolio Item-->
<figure style="position: absolute; left: 0px; top: 0px; transform: translate3d(337px, 0px, 0px) scale3d(1, 1, 1); width: 337px; opacity: 1;" class="portfolio-item one-four design isotope-item effect-oscar">
<div class="portfolio_img"> <img src="img/portfolio_pic2.jpg" alt="Portfolio 1"> </div>
<figcaption>
<div>
<a href="img/portfolio_pic2.jpg" class="fancybox">
<h2>Best <span>Material</span></h2>
<p>He used to clean code.</p>
</a>
</div>
</figcaption>
</figure>
<!--/Portfolio Item -->
<!-- Portfolio Item -->
<figure style="position: absolute; left: 0px; top: 0px; transform: translate3d(674px, 0px, 0px) scale3d(1, 1, 1); width: 337px; opacity: 1;" class="portfolio-item one-four design isotope-item effect-oscar">
<div class="portfolio_img"> <img src="img/portfolio_pic3.jpg" alt="Portfolio 1"> </div>
<figcaption>
<div>
<a href="img/portfolio_pic3.jpg" class="fancybox">
<h2>Wow <span>Material</span></h2>
<p>He used to clean code.</p>
</a>
</div>
</figcaption>
</figure>
<!--/Portfolio Item-->
<!-- Portfolio Item-->
<figure style="position: absolute; left: 0px; top: 0px; transform: translate3d(1011px, 0px, 0px) scale3d(1, 1, 1); width: 337px; opacity: 1;" class="portfolio-item one-four android prototype web isotope-item effect-oscar">
<div class="portfolio_img"> <img src="img/portfolio_pic4.jpg" alt="Portfolio 1"> </div>
<figcaption>
<div>
<a href="img/portfolio_pic4.jpg" class="fancybox">
<h2>Grate <span>Material</span></h2>
<p>He used to clean code.</p>
</a>
</div>
</figcaption>
</figure>
<!-- Portfolio Item -->
<!-- Portfolio Item -->
<figure style="position: absolute; left: 0px; top: 0px; transform: translate3d(0px, 240px, 0px) scale3d(1, 1, 1); width: 337px; opacity: 1;" class="portfolio-item one-four design isotope-item effect-oscar">
<div class="portfolio_img"> <img src="img/portfolio_pic5.jpg" alt="Portfolio 1"> </div>
<figcaption>
<div>
<a href="img/portfolio_pic5.jpg" class="fancybox">
<h2>Rise <span>Material</span></h2>
<p>He used to clean code.</p>
</a>
</div>
</figcaption>
</figure>
<!--/Portfolio Item -->
<!-- Portfolio Item -->
<figure style="position: absolute; left: 0px; top: 0px; transform: translate3d(337px, 240px, 0px) scale3d(1, 1, 1); width: 337px; opacity: 1;" class="portfolio-item one-four web isotope-item effect-oscar">
<div class="portfolio_img"> <img src="img/portfolio_pic6.jpg" alt="Portfolio 1"> </div>
<figcaption>
<div>
<a href="img/portfolio_pic6.jpg" class="fancybox">
<h2>Touch <span>Material</span></h2>
<p>He used to clean code.</p>
</a>
</div>
</figcaption>
</figure>
<!--/Portfolio Item -->
<!-- Portfolio Item -->
<figure style="position: absolute; left: 0px; top: 0px; transform: translate3d(674px, 240px, 0px) scale3d(1, 1, 1); width: 337px; opacity: 1;" class="portfolio-item one-four design web isotope-item effect-oscar">
<div class="portfolio_img"> <img src="img/portfolio_pic7.jpg" alt="Portfolio 1"> </div>
<figcaption>
<div>
<a href="img/portfolio_pic7.jpg" class="fancybox">
<h2>Light <span>Material</span></h2>
<p>He used to clean code.</p>
</a>
</div>
</figcaption>
</figure>
<!--/Portfolio Item -->
<!-- Portfolio Item -->
<figure style="position: absolute; left: 0px; top: 0px; transform: translate3d(1011px, 240px, 0px) scale3d(1, 1, 1); width: 337px; opacity: 1;" class="portfolio-item one-four android isotope-item effect-oscar">
<div class="portfolio_img"> <img src="img/portfolio_pic8.jpg" alt="Portfolio 1"> </div>
<figcaption>
<div>
<a href="img/portfolio_pic8.jpg" class="fancybox">
<h2>Nice <span>Material</span></h2>
<p>He used to clean code.</p>
</a>
</div>
</figcaption>
</figure>
<!--/Portfolio Item -->
</div>
<!--/Portfolio Wrapper -->
</div>
<!--/Portfolio Filters -->
<div class="portfolio_btm"></div>
<div id="project_container">
<div class="clear"></div>
<div id="project_data"></div>
</div>
</section>
<!--/Portfolio -->
<section class="page_section" id="clients"><!--page_section-->
<h2>other supported platforms</h2>
<!--page_section-->
<div class="client_logos"><!--client_logos-->
<div class="container">
<ul class="fadeInRight animated wow">
<li><a href="https://www.apple.com/in/ios/app-store/" target=_blank><img height=60 width=120 src="img/ios.png" alt=""></a></li>
<li><a href="https://play.google.com" target=_blank><img height=60 width=300 src="img/android.png" alt=""></a></li>
</ul>
</div>
</div>
</section>
<!--client_logos-->
<section class="page_section team" id="team"><!--main-section team-start-->
<div class="container">
<h2>Team</h2>
<h6>Lorem ipsum dolor sit amet, consectetur adipiscing.</h6>
<div class="team_section clearfix">
<div class="team_area">
<div class="team_box wow fadeInDown delay-03s">
<div class="team_box_shadow"><a href="javascript:void(0)"></a></div>
<img src="img/team_pic1.jpg" alt="">
<ul>
<li><a href="https://twitter.com/A_Tushar_/" target=_blank class="fa fa-twitter"></a></li>
<li><a href="https://www.facebook.com/Tushar.r3d/" target=_blank class="fa fa-facebook"></a></li>
<!--<li><a href="javascript:void(0)" class="fa fa-pinterest"></a></li>
<li><a href="javascript:void(0)" class="fa fa-google-plus"></a></li>-->
</ul>
</div>
<h3 class="wow fadeInDown delay-03s">Tushar Arora</h3>
<span class="wow fadeInDown delay-03s">Chief Executive Officer</span>
<p class="wow fadeInDown delay-03s">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin consequat sollicitudin cursus. Dolor sit amet, consectetur adipiscing elit proin consequat.</p>
</div>
<div class="team_area"></div>
<div class="team_area">
<div class="team_box wow fadeInDown delay-06s">
<div class="team_box_shadow"><a href="javascript:void(0)"></a></div>
<img src="img/team_pic2.jpg" alt="">
<ul>
<li><a href="https://twitter.com/" class="fa fa-twitter"></a></li>
<li><a href="https://www.facebook.com/" class="fa fa-facebook"></a></li>
<!--<li><a href="javascript:void(0)" class="fa fa-pinterest"></a></li>
<li><a href="javascript:void(0)" class="fa fa-google-plus"></a></li>-->
</ul>
</div>
<h3 class="wow fadeInDown delay-06s">Sahil Arora</h3>
<span class="wow fadeInDown delay-06s">Vice President</span>
<p class="wow fadeInDown delay-06s">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin consequat sollicitudin cursus. Dolor sit amet, consectetur adipiscing elit proin consequat.</p>
</div>
</div>
</div>
</section>
<!--/Team-->
<!--Footer-->
<footer class="footer_wrapper" id="contact">
<div class="container">
<section class="page_section contact">
<div class="contact_section">
<h2>Contact Us</h2>
<div class="row">
<div class="col-lg-4">
</div>
<div class="col-lg-4">
</div>
<div class="col-lg-4">
</div>
</div>
</div>
<div class="row">
<div class="col-lg-4 wow fadeInLeft">
<div class="contact_info">
<div class="detail">
<h4>Bharati Vidyapeeth's Institute of Computer Applications and Management (BVICAM)</h4>
<p><a target=_blank href="https://goo.gl/maps/E2FhP2xhuUC2">A-4, Paschim Vihar, Opp. Paschim Vihar (East) Metro Station, Rohtak Road, Shiva Enclave, Paschim Vihar, New Delhi, Delhi 110063</a></p>
</div>
<div class="detail">
<h4>Call us</h4>
<p><a href="tel:01125275055">011-2527 5055</a></p>
</div>
<div class="detail">
<h4>Email us</h4>
<p><a href="mailto:mca@bvicam.ac.in">mca@bvicam.in</a>
<br>
<a href="mca.hoda@gmail.com">mca.hoda@gmail.com</a></p>
</div>
</div>
<ul class="social_links">
<li class="twitter animated bounceIn wow delay-02s"><a href="https://twitter.com/MNHODA2" target=_blank><i class="fa fa-twitter"></i></a></li>
<li class="facebook animated bounceIn wow delay-03s"><a href="https://www.facebook.com/bvicam.newdelhi/" target=_blank><i class="fa fa-facebook"></i></a></li>
<!--<li class="pinterest animated bounceIn wow delay-04s"><a href="javascript:void(0)"><i class="fa fa-pinterest"></i></a></li>
<li class="gplus animated bounceIn wow delay-05s"><a href="javascript:void(0)"><i class="fa fa-google-plus"></i></a></li>-->
</ul>
</div>
<div class="col-lg-8 wow fadeInLeft delay-06s">
<div class="form">
<!--NOTE: Update your email Id in "contact_me.php" file in order to receive emails from your contact form-->
<form name="sentMessage" id="contactForm" novalidate>
<div class="form-group label-floating">
<div class="input-group">
<label class="control-label">Full Name</label>
<input type="text" class="form-control" id="name" required
data-validation-required-message="Please enter your name" />
<p class="help-block"></p>
</div>
</div>
<div class="form-group label-floating">
<div class="input-group">
<label class="control-label">Email Address</label>
<input type="email" class="form-control" id="email" required
data-validation-required-message="Please enter your email" />
</div>
</div>
<div class="form-group label-floating">
<div class="input-group">
<label class="control-label">Message</label>
<textarea rows="10" cols="100" class="form-control" id="message" required
data-validation-required-message="Please enter your message" minlength="5"
data-validation-minlength-message="Min 5 characters"
maxlength="999" style="resize:none"></textarea>
</div>
</div>
<div id="success"> </div> <!-- For success/fail messages -->
<button type="submit" class="btn btn-raised btn-info pull-right">Send <i class="material-icons">send</i></button><br />
</form>
</div>
</div>
</div>
</section>
</div>
<div class="container">
<div class="footer_bottom"><span>Copyright © 2019, <a href="https://webthemez.com/tag/free" target="_blank">Free Template</a> by WebThemez.com. </span> </div>
</div>
</footer>
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/ripples.min.js"></script>
<script src="js/material.min.js"></script>
<script src="js/snackbar.min.js"></script>
<!-- Script Files -->
<script type="text/javascript" src="js/jquery-scrolltofixed.js"></script>
<script type="text/javascript" src="js/jquery.nav.js"></script>
<script type="text/javascript" src="js/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="js/jquery.isotope.js"></script>
<script src="fancybox/jquery.fancybox.pack.js" type="text/javascript"></script>
<script type="text/javascript" src="js/custom.js"></script>
<script>
$(function () {
$.material.init();
});
</script>
</body>
</html>