-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
890 lines (785 loc) · 55.1 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
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous" />
<!--Favicon-->
<link rel="shortcut icon" href="assets/favicon/favicon.ico" type="image/x-icon" />
<link rel="icon" href="assets/favicon/favicon.ico" type="image/x-icon" />
<!-- FontAwesome CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" />
<!-- Custom Stylesheet -->
<link rel="stylesheet" href="css/style.css" />
<title>E-Cell SLRTCE</title>
</head>
<body>
<!-- Navigation -->
<div class="navigation">
<input type="checkbox" class="navigation__checkbox" id="nav-toggle" />
<label for="nav-toggle" class="navigation__button">
<span class="navigation__icon"> </span>
</label>
<div class="navigation__background"></div>
<nav class="navigation__nav">
<ul class="navigation__list">
<li class="navigation__item">
<a href="#about" class="navigation__link"><span>01</span>About Us</a
>
</li>
<li class="navigation__item">
<a href="#events" class="navigation__link"><span>02</span>Events</a>
</li>
<li class="navigation__item">
<a href="#team" class="navigation__link"><span>03</span>Our Team</a>
</li>
<li class="navigation__item">
<a href="#contact" class="navigation__link"><span>04</span>Contact Us</a
>
</li>
</ul>
</nav>
</div>
<!-- Social Button -->
<section class="social__component" id="social__scroll">
<div class="social__button">
<input type="checkbox" id="click" />
<label for="click" class="share-btn">
<span class="fas fa-share-alt"></span>
<a
href="https://www.linkedin.com/company/e-cell-slrtce"
target="_blank"
rel="noopener noreferrer"
><span class="fab fa-linkedin-in"></span
></a>
<a href="https://www.instagram.com/ecell.slrtce/" target="_blank" rel="noopener noreferrer"><span class="fab fa-instagram"></span
></a>
<a href="https://www.facebook.com/ecellslrtce.in/" target="_blank" rel="noopener noreferrer"><span class="fab fa-facebook"></span
></a>
</label>
</div>
</section>
<!-- Header -->
<header class="header">
<div class="header__content container">
<img class="header__logo" src="./assets/img/logo-light.svg" alt="E-Cell SLRTCE" />
<h1 class="header__title">Entrepreneurship Cell<br />Shree LR Tiwari College Of Engineering</h1>
<h3 class="header__subtitle">
Unconventional Ideas, Uncompromising Spirit.
</h3>
<div class="row">
<a href="#" class="btn ml-auto mr-auto header__button">Explore</a>
</div>
<div class="header__socials">
<a class="header__socials__icon" href="https://www.facebook.com/ecellslrtce.in/" target="_blank" rel="noopener noreferrer"><i class="fab fa-facebook-f"></i
></a>
<a class="header__socials__icon" href="https://www.instagram.com/ecell.slrtce/" target="_blank" rel="noopener noreferrer"><i class="fab fa-instagram"></i
></a>
<a class="header__socials__icon" href="https://www.linkedin.com/company/e-cell-slrtce" target="_blank" rel="noopener noreferrer"><i class="fab fa-linkedin-in"></i
></a>
<br>
<br>
</div>
</div>
</header>
<!-- Weekly Blogs -->
<section class="about" id="about">
<div class="section-header">
<div class="mx-5 my-2">
<h1 class="section-title"> <u>WEEKLY BLOGS</u> </h1><br>
</div>
</div>
<body>
<!--Blog - section------>
<section id="blog">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, intial-scale=1.0, maximum-scale=1.0, user-scalable=no;"
<!--stylesheet--------->
<link rel="stylesheet" href="style.css"/>
<!--poppins----------->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap" rel="stylesheet">
</head>
<!--blog-container------------>
<div class="blog-container">
<!--box-1----------------->
<div class="blog-box">
<!--img----->
<div class="blog-img">
<img src="assets/blog photos/imp of entr.png" alt="Blog">
</div>
<!--text---->
<div class="blog-text">
<a href="#" class="blog-title">Importance of Entrepreneurship</a>
<p>"[1] The benefits of entrepreneurship extend beyond the businesses they establish. Entrepreneurs improve the lives of individuals and communities, as well as the overall economy. Entrepreneurs have been instrumental in spurring social change and improving the way people live and work.
[2] There are many reasons to consider entrepreneurship, from its freedom and flexibility to the job satisfaction it can offer.
i. Be your own boss. ...
ii. Potentially unlimited income.
iii. Choose when and where you work.
iv. Make a living doing what you love.
v. Constant growth and development.
vi. Choose who you work with.
vii. Create a positive impact.
[3] Entrepreneurship Accelerates Economic Growth by creating new jobs and opportunities.
[4] It also promotes innovation solving problems that existing products and technology have not yet solved.
[5] Leads to better standards of living as entrepreneurs.
[6] It also supports research and development.
Before introducing a new product or service in the market, an in-depth investigation and testing of the product is typically necessary. As a result, an entrepreneur works with research organisations and institutions and provides funding for research and development. This often helps boost research and development, which may make discoveries possible."</p>
<a href="blogs/blog1.html " target="_blank " class="btn btn-primary btn-sm ">See More <span class="fa fa-arrow-right "></span
></a>
</div>
</div>
<!--box-2----------------->
<div class="blog-box">
<!--img----->
<div class="blog-img">
<img src="assets/blog photos/mojo pizz.png" alt="Blog">
</div>
<!--text---->
<div class="blog-text">
<a href="#" class="blog-title">MOJO PIZZA</a>
<p>"Mojo Pizza is an Indian pizza (delivery-only) brand, incorporated in 2017. It takes online orders through its app and website. It claims to serve double toppings on their pizzas.
Beginning
Mojo Pizza is an Indian pizza (delivery-only) brand, incorporated in 2017. It takes online orders through its app and website. Mojo Pizza claims to serve double toppings on their pizzas.
Mojo Pizza was founded by Anshul Gupta and Amit Raj, who own BOX8 Anshul from IIT Bombay was previously an analyst at Deutsche Bank, and Amit from IIT Kharagpur worked as a senior analyst for Deutsche Bank.
Aim
Mojo Pizza was to reach not only a maximum number of people but also reach the right people, at the right time, and with the right message.
The entire plan was curated by keeping an “Effective Reach and an optimum level of frequency” in mind. This effective reach when coupled with an optimum frequency of the brand aimed to deliver something that the Brand Mojo Pizza has been chasing – Building Awareness in the minds of potential consumers along with an opportunity to get some quality conversions as a bonus. The team at ET Medialabs landed onto a strategy that not only addressed the immediate objective but also served as an answer to what’s next after increased awareness.
Mojo Pizza has grown to INR 100 CR revenue brand. The first half of this year would be an aberration owing to covid, but the duo is confident of 100% year-on-year growth as things start getting back to normal.
Business Model
Owners of cloud-kitchen brand Box8 and MOJO Pizza has raised $40 million in a round led by Tiger Global.
Founded by two IIT graduates Amit Raj and Anshul Gupta, EatClub Brands started out with BOX8, known for its All-in-1 Meals & Desi Box. It currently owns 8 brands that operate out of its 150+ kitchens.
It also runs GLOBO Ice Cream and ZAZA Biryani.
"EatClub Brands is re-imagining how kitchens can operate through its innovative tech-first, full-stack cloud kitchen model. We are impressed with the company's ability to achieve scale and customer loyalty, first with BOX8 and then with MOJO Pizza, while achieving impressive unit economics, and we are excited to partner with them as they continue to grow," said Griffin Schroeder, Partner, Tiger Global.
They are present across 5 cities in India- Mumbai, Bangalore, Pune, NCR and Hyderabad - delivering over 1.5 million meals every month.
"We have deliberately spent time in building deep capabilities in food, technology & operations. With this additional funding, we now plan to rapidly scale geographically to 500+ kitchens in 15 cities. We are planning to aggressively on-board talent and build robust teams- the backbone of our organisation," said Amit Raj, Co-Founder, EatClub Brands (formerly BOX8).
Revenue Stream
Mojo Pizza has grown to INR 100 CR revenue brand. The first half of this year would be an aberration owing to covid, but the duo is confident for a 100% year on year growth as things start getting back to normal.
Marketing
Mojo has several claims to fame, according to Gupta, and one is that it offers double the toppings of other pizza brands.
"Before we started MOJO Pizza, we noticed that all other pizzas available in the market had very few toppings," he said "We realized how consumers were being deprived of the ideal experience, so we decided to fill in the gap by ensuring double the amount of toppings on our pizzas."
Offering an efficient delivery experience is also key.
"Ninety-eight percent of our orders are delivered in less than 30 minutes," Gupta said. "We ensure that every delivery executive is provided complete training and SOPs on technology, app usage, communication skills, problem handling, safe riding, zero contact delivery, etc."
The fair price point has also helped Mojo thrive.
A 10-inch pizza, which serves two, starts around $7, and the average order is under $8.
"Customers can take a SlashPass membership from our app and (receive) 30% off, plus free delivery on every order," Gupta said.
Challenges
Pizza eaters all over the country were tired of dealing with the ‘lack of toppings’ in a Pizza. Mojo Pizza solved this very problem by introducing its pizza with 2X Toppings. However, the crucial thing for the brand was to reach the relevant audience by building awareness for both the brand and its offering.
Mojo Pizza introduced the campaign #MoveOnToMojoPizza with Yami Gautam promoting its ‘2x toppings’ offering.
Objectives
One big piece of the objective puzzle for Mojo Pizza was to reach not only maximum people but also reaching the right people, at the right time, and with the right messaging.
The entire plan was curated by keeping an “Effective Reach and an optimum level of frequency” in mind. This effective reach when coupled with an optimum frequency of the brand aimed to deliver something that the Brand Mojo Pizza has been chasing – Building Awareness in the minds of Potential consumers along with an opportunity to get some quality conversions as bonus.
In essence the objective:
Effective Reach + Optimum Frequency = Brand Space in the minds of Consumers
Conclusion
By marketing to today’s sophisticated youth in a multi-channel manner, Mojo Pizza witnessed a whopping 23% increase in Brand impressions to the last quarter(April-June).There was a 14% increase in clicks while the brand managed to keep its CTR intact despite there being a massive increase in the search volume. UAC video only campaigns performed well and its conversions & reach metrics were good."</p>
<a href="blogs/blog2.html " target="_blank " class="btn btn-primary btn-sm ">See More <span class="fa fa-arrow-right "></span
></a>
</div>
</div>
<!--box-3----------------->
<div class="blog-box">
<!--img----->
<div class="blog-img">
<img src="assets/blog photos/cred.png" alt="Blog">
</div>
<!--text---->
<div class="blog-text">
<a href="#" class="blog-title">CRED</a>
<p>"For a long time, paying the bills of credit cards wasn’t something that we enjoyed and looked forward to do so. But with the launch of CRED, even this process has become ‘fun’ for the working professionals.
If you use this fintech platform to pay your card bills you can simply earn CRED coins and get exclusive member deals across various in-app offerings. What makes this app more interesting is that, once you have collected enough such coins you can even check out the CRED store to find a range of products from curated brands.
In this blog, we will present you a brief analysis of CRED’s journey so far.
To begin with, let’s understand what kind of a platform CRED is.
What is CRED?
CRED is a Bangalore-based startup which allows the credit card users to pay their card bills through this platform and also earn reward points for each transaction. This fintech platform also helps the users to make their house rent payments. Moreover, the company assures you the complete protection of all your data and information, which makes it fully safe and secure to use.
How did it begin?
Well, the idea behind launching CRED was quite clear. Its founder Kunal Shah wanted to create a platform which can make young generation’s life more systematic in terms of managing finance.
He wanted to offer more privileges and benefits for the people having good credit scores and so creating a flywheel effect for them was important to improve the scores. As far as the target audience was concerned, Kunal decided to focus specifically on those people who pay their taxes on time just like a responsible citizen of the country.
So, what motivated Kunal to launch CRED in India? Well, after Kunal Shah’s first venture, FreeCharge, was sold to Snapdeal in 2015, he spent a lot of time in traveling and exploring new things about several developed nations. One common point, which he actually noticed while learning about such countries, there was a high degree of trust extended by the system upon the public. For an instance, they had petrol pumps without any attendant, or self-checkout counters in the supermarkets. That’s how Kunal understood the importance of frictionless environment, which means an environment where all the costs and restraints related to the transactions are non-existent.
In this way, eliminating the scope of confusion and errors, Kunal Shah established a trustworthy platform for public, CRED, in 2018.
About Kunal Shah
Born in 1983, Kunal graduated with a Bachelor of Arts degree in Philosophy from Wilson College, Mumbai and later pursued MBA from the Narsee Monjee Institute of Management Studies (NMIMS) before dropping out. The Mumbai-born businessman started his entrepreneurial journey with PaisaBack, a cashback and promotional platform for the retailers. However, he soon exited that venture to establish a new company, FreeCharge, with his partner Sandeep Tandon in August 2010.
In 2015, when Snapdeal acquired FreeCharge, Kunal decided to launch another start-up CRED in 2018.
Growth of CRED in the market
From beginning just as a credit card bill payment app to becoming a giant player in the e-commerce business and in the investment sector as well, CRED has certainly achieved a lot in the past two years. Despite growing with such a pace in the market, the fintech platform is still focusing on expanding its users rather than making profits. The company has raised over $800 million till date.
Furthermore, CRED saw a great hike in its popularity during the Indian Premier League (IPL) 2020. The company reported an increase in both its user base and the fundings when it signed a three-year deal with the Board of Control for Cricket in India (BCCI) as an official partner for the cash-rich league.
On the top of that, as of October 2020, CRED had 30 lakh customers and 20% of them were premium credit card holders.
Earlier this year, CRED became the latest homegrown company to enter the unicorn club with a Series D funding of $215 million by new investor Falcon Edge Capital and existing investor Coatue Management.
Reason behind CRED’s success
If you are still thinking that how CRED has managed to gain success in such a short period of time? The answer lies in its huge engagement. Most importantly, CRED keeps offering interesting products to its users. Options like UPI payments, which can be used to make all forms of transactions, rent payments and credit card bill payments are what propelling the continuous growth of this platform from the last couple of years. Any working professional can come to Cred and get all his basic needs fulfilled."</p>
<a href="blogs/blog3.html " target="_blank " class="btn btn-primary btn-sm ">See More <span class="fa fa-arrow-right "></span
></a>
</div>
</div>
<!--box-4----------------->
<div class="blog-box">
<!--img----->
<div class="blog-img">
<img src="assets/blog photos/instamojo.png" alt="Blog">
</div>
<!--text---->
<div class="blog-text">
<a href="#" class="blog-title">Instamojo</a>
<p>Instamojo - About and How It Works?
Back when incepted in 2012, Instamojo started as a solution provider of digital payments which now has progressively grown into a robust online payment gateway for enterprises like micro, small, and medium. So that they start, manage, and grow their businesses online.
All in all, like most fintech startups in the country, Instamojo has turned into a full-stack digital services platform overtime with the sole vision of constructively bridging the gap between MSMEs business, who find it hard to leverage and optimally use the right technology and developers in reaching out to the relevant application users.
Instamojo has two flagship products:
MojoCapital
This product from Instamojo helps disperse bite-sized short-term credit loans which are worth in and around $2 million. MojoCapital caters primarily to its merchants on a monthly basis, and it has shown a projected growth of 25% on the month on monthly basis.
MojoXpress
MojoXpress is often regarded as the logistics arm of Instamojo, and helps MSMEs deliver its products to their respective customers. Not very surprisingly, It is touching close to 1,000 shipments per month.
the Mojo Journey
It is said that an entrepreneur sees a solution where a common man sees a problem. This can be held true when it comes to the case of Instamojo. The company was founded by Harshad Sharma, along with his three other friends Sampas Swain, Akash Gehani and Aditya Sengupta in 2012. The main motivation behind the concept was to make the payment gateway more simple and readily accessible to the small business owners of the nation.
</p>
<a href="blogs/blog4.html " target="_blank " class="btn btn-primary btn-sm ">See More <span class="fa fa-arrow-right "></span
></a>
</div>
</div>
</div>
</section>
</body>
</section>
<!-- About us -->
<section class="about" id="about">
<div class="section-header">
<div class="mx-5 my-2">
<h1 class="section-title"> <u>ABOUT US</u> </h1><br>
<h2 class="section-tagline text-white">As a team, we are a non-profitable student organization dedicated to promote and explore the spirit of entrepreneurship & business among students of SLRTCE. We function as a guide for students who come up with creative ideas which
can be transformed into successful startups and companies.</h2>
<hr class="section-hr" />
</div>
</div>
<div class="container">
<div class="card-deck mx-auto">
<div class="card">
<div class="card-img-top">
<i class="far fa-lightbulb"></i>
</div>
<div class="card-body">
<div class="card-title col-12"><u>VISION</u></div>
<div class="card-text mx-auto text-white">
We are resolute to inculcate entrepreneurial mindset and kindle a burning desire in individuals to help them reach to the pinnacle of success by furnishing them with exposure, managerial skills, leadership skills and the platform to showcase their creativity
and dynamicity through making them familiar with the real-life experience in a start-up.
</div>
</div>
</div>
<div class="card">
<div class="card-img-top">
<i class="far fa-lightbulb"></i>
</div>
<div class="card-body">
<div class="card-title col-12"><u>MISSION</u></div>
<div class="card-text mx-auto text-white">
Our mission at E-Cell is the development of entrepreneurship through educational interventions, conducting various types of training programs, promoting business knowledge and increasing confidence in students by carrying out research studies, evaluations
and assessments.
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Events -->
<section class="events" id="events">
<div class="section-header">
<h1 class="section-title">ACHIEVEMENTS & EVENTS</h1>
<h2 class="section-tagline">A PEEK INTO ACTIVITIES AND ACHIEVEMENTS OVER THE YEAR</h2>
<hr class="section-hr" />
</div>
<div class="container-sm">
<div class="row">
<div class="col">
<div class="card bg-dark text-white ">
<img src="assets/events photos/ev-2.jpeg " alt=" " class="card-img " height="300 " width="200 " />
<div class="card-img-overlay ">
<br><br><br><br>
<div class="position-relative h-100 align-items-center ">
<h5 class="card-title ">
<p class="text-center my-9 ">
NEC
</p>
</h5>
<div class="card-text-wrapper text-center">
<a href="events/event1.html " target="_blank " class="btn btn-primary btn-sm ">See More <span class="fa fa-arrow-right "></span
></a>
</div>
</div>
</div>
</div>
</div>
<div class="col">
<div class="card bg-dark text-white ">
<img src="assets/events photos/ev-2.jpeg " alt=" " class="card-img " height="300 " width="200 " />
<div class="card-img-overlay ">
<br><br><br><br>
<div class="position-relative h-100 align-items-center ">
<h5 class="card-title ">
<p class="text-center my-9 ">
Events
</p>
</h5>
<div class="card-text-wrapper text-center">
<a href="events/event1.html " target="_blank " class="btn btn-primary btn-sm ">See More <span class="fa fa-arrow-right "></span
></a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row my-5">
<div class="col mx-10">
<div class="card bg-dark text-white ">
<img src="assets/events photos/ev-2.jpeg " alt=" " class="card-img " height="300 " width="300 " />
<div class="card-img-overlay ">
<br><br><br><br>
<div class="position-relative h-100 align-items-center ">
<h5 class="card-title ">
<p class="text-center my-9 ">
ACHIEVEMENTS
</p>
</h5>
<div class="card-text-wrapper text-center">
<a href="events/event1.html " target="_blank " class="btn btn-primary btn-sm ">See More <span class="fa fa-arrow-right "></span
></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Team -->
<section class="team " id="team ">
<div class="section-header ">
<h1 class="section-title ">OUR TEAM</h1>
<h2 class="section-tagline ">ROLES AND CONTACTS</h2>
<hr class="section-hr " />
</div>
<div class="container ">
<div class="card-deck justify-content-center align-items-center ">
<div class="team-member ">
<!-- <div class="card bg-dark text-white ">
<img
src="https://github.com/darshjain.png "
alt="User avatar "
class="card-img "
/>
<div
class="card-img-overlay text-center justify-content-center align-items-center "
>
<div
class="position-relative h-100 justify-content-center align-items-center "
>
<div class="card-text align-self-center ">
<h5>9987109967</h5>
<p class="card-text ">
<a href=" "><i class="fab fa-facebook mr-2 "></i></a>
<a href=" "><i class="fab fa-instagram mr-2 "></i></a>
<a href=" "><i class="fab fa-linkedin "></i></a>
</p>
</div>
</div>
</div>
</div> -->
<!-- <div class="text-center text-white member-info ">
<h3>Diya Kathait</h3>
<h5>Team Leader</h5>
</div>
</div>
<div class="team-member ">
<div class="card bg-dark text-white ">
<img
src="https://github.com/darshjain.png "
alt="User avatar "
class="card-img "
/>
<div
class="card-img-overlay text-center justify-content-center align-items-center "
>
<div
class="position-relative h-100 justify-content-center align-items-center "
>
<div class="card-text align-self-center ">
<h5>9867802776</h5>
<p class="card-text ">
<a href=" "><i class="fab fa-facebook mr-2 "></i></a>
<a href=" "><i class="fab fa-instagram mr-2 "></i></a>
<a href=" "><i class="fab fa-linkedin "></i></a>
</p>
</div>
</div>
</div>
</div>
<div class="text-center text-white member-info ">
<h3>Unnati Bamania</h3>
<h5>Event Manager</h5>
</div>
</div>
</div> -->
<div class="card-deck justify-content-center align-items-center ">
<div class="team-member ">
<div class="card bg-dark text-white ">
<img src="assets\members_photo\leelasha thakur.png" alt="User avatar " class="card-img " />
<div class="card-img-overlay text-center justify-content-center align-items-center ">
<div class="position-relative h-100 justify-content-center align-items-center ">
<div class="card-text align-self-center ">
<h5>9324526992</h5>
<p class="card-text ">
<a href="https://www.facebook.com/Leelasa.Thakur16?mibextid=ZbWKwL "><i class="fab fa-facebook mr-2 "></i></a>
<a href="https://instagram.com/lotsofleelasa?igshid=YmMyMTA2M2Y="><i class="fab fa-instagram mr-2 "></i></a>
<a href="https://www.linkedin.com/in/leelasa-thakur-880684193 "><i class="fab fa-linkedin "></i></a>
</p>
</div>
</div>
</div>
</div>
<div class="text-center text-white member-info ">
<h3>Leelasa Thakur</h3>
<h5>Chairperson,Teamlead</h5>
</div>
</div>
<div class="team-member ">
<div class="card bg-dark text-white ">
<img src="assets\members_photo\Vidhi Shah.png" alt="User avatar " class="card-img " />
<div class="card-img-overlay text-center justify-content-center align-items-center ">
<div class="position-relative h-100 justify-content-center align-items-center ">
<div class="card-text align-self-center ">
<h5>9137339611</h5>
<p class="card-text ">
<a href=" "><i class="fab fa-facebook mr-2 "></i></a>
<a href="https://www.instagram.com/invites/contact/?i=cqwk7pc9exla&utm_content=3ca71jd"><i class="fab fa-instagram mr-2 "></i></a>
<a href="https://www.linkedin.com/in/shah-vidhi-543055216"><i class="fab fa-linkedin "></i></a>
</p>
</div>
</div>
</div>
</div>
<div class="text-center text-white member-info ">
<h3>Vidhi Shah</h3>
<h5>Events and Speaker Session Head</h5>
</div>
</div>
<div class="team-member ">
<div class="card bg-dark text-white ">
<img src="assets\members_photo\satyamishra.png" alt="User avatar " class="card-img " />
<div class="card-img-overlay text-center justify-content-center align-items-center ">
<div class="position-relative h-100 justify-content-center align-items-center ">
<div class="card-text align-self-center ">
<h5>9372691472</h5>
<p class="card-text ">
<a href="https://www.facebook.com/satyaprakash.mishra.359126 " target="_blank "><i class="fab fa-facebook mr-2 "></i></a>
<a href="https://www.instagram.com/satya.mishra22/ " target="_blank "><i class="fab fa-instagram mr-2 "></i></a>
<a href="https://www.linkedin.com/in/satya-prakash-mishra-833814202
" target="_blank "><i class="fab fa-linkedin "></i></a>
</p>
</div>
</div>
</div>
</div>
<div class="text-center text-white member-info ">
<h3>Satya Prakash Mishra</h3>
<h5>Technical & Design Head</h5>
</div>
</div>
</div>
<div class="card-deck justify-content-center align-items-center ">
<div class="team-member ">
<div class="card bg-dark text-white ">
<img src="assets\members_photo\Head of Marketing.png " alt="User avatar " class="card-img " />
<div class="card-img-overlay text-center justify-content-center align-items-center ">
<div class="position-relative h-100 justify-content-center align-items-center ">
<div class="card-text align-self-center ">
<h5>9004905320</h5>
<p class="card-text ">
<a href=" https://www.facebook.com/kaustubh.chaubey.1?mibextid=ZbWKwL"><i class="fab fa-facebook mr-2 "></i></a>
<a href=" "><i class="fab fa-instagram mr-2 "></i></a>
<a href="https://www.linkedin.com/in/kaustubh-chaubey-aa346a189 "><i class="fab fa-linkedin "></i></a>
</p>
</div>
</div>
</div>
</div>
<div class="text-center text-white member-info ">
<h3>Kaushtubh Chaubey</h3>
<h5>Marketing Head</h5>
</div>
</div>
<div class="team-member ">
<div class="card bg-dark text-white ">
<img src="assets\members_photo\Head of Public Relation.png" alt="User avatar " class="card-img " />
<div class="card-img-overlay text-center justify-content-center align-items-center ">
<div class="position-relative h-100 justify-content-center align-items-center ">
<div class="card-text align-self-center ">
<h5>9869579733</h5>
<p class="card-text ">
<a href="https://www.facebook.com/sanjog.putty?mibextid=ZbWKwL"><i class="fab fa-facebook mr-2 "></i></a>
<a href="https://instagram.com/sanjog_11?igshid=YmMyMTA2M2Y="><i class="fab fa-instagram mr-2 "></i></a>
<a href="https://www.linkedin.com/in/sanjog-putty-41b8811b8"><i class="fab fa-linkedin "></i></a>
</p>
</div>
</div>
</div>
</div>
<div class="text-center text-white member-info ">
<h3>Sanjog Putty</h3>
<h5>Public Relations Head</h5>
</div>
</div>
<div class="team-member ">
<div class="card bg-dark text-white ">
<img src="assets\members_photo\Shaikh Shoib.png" alt="User avatar " class="card-img " />
<div class="card-img-overlay text-center justify-content-center align-items-center ">
<div class="position-relative h-100 justify-content-center align-items-center ">
<div class="card-text align-self-center ">
<h5>9619883030</h5>
<p class="card-text ">
<a href=" "><i class="fab fa-facebook mr-2 "></i></a>
<a href="https://instagram.com/_x_.shoib.x?igshid=NjZiMGI4OTY="><i class="fab fa-instagram mr-2 "></i></a>
<a href="https://www.linkedin.com/in/shaikh-shoib-1a0711253 "><i class="fab fa-linkedin "></i></a>
</p>
</div>
</div>
</div>
</div>
<div class="text-center text-white member-info ">
<h3>Shoib Shaikh</h3>
<h5>Fainance Head</h5>
</div>
</div>
</div>
<div class="card-deck justify-content-center align-items-center ">
<div class="team-member ">
<div class="card bg-dark text-white ">
<img src="assets\members_photo\Kanaujia Abhishek Ramesh.png" alt="User avatar " class="card-img " />
<div class="card-img-overlay text-center justify-content-center align-items-center ">
<div class="position-relative h-100 justify-content-center align-items-center ">
<div class="card-text align-self-center ">
<h5>9021148659</h5>
<p class="card-text ">
<a href=" "><i class="fab fa-facebook mr-2 "></i></a>
<a href="https://instagram.com/_theengineer_boy_?igshid=YmMyMTA2M2Y="><i class="fab fa-instagram mr-2 "></i></a>
<a href="https://www.linkedin.com/in/abhishek-kanaujia-639aa31a0"><i class="fab fa-linkedin "></i></a>
</p>
</div>
</div>
</div>
</div>
<div class="text-center text-white member-info ">
<h3>Kanaujia Abhishek</h3>
<h5>Editorial & Content Head</h5>
</div>
</div>
<div class="team-member ">
<div class="card bg-dark text-white ">
<img src="assets\members_photo\Siddhant Singh.png" alt="User avatar " class="card-img " />
<div class="card-img-overlay text-center justify-content-center align-items-center ">
<div class="position-relative h-100 justify-content-center align-items-center ">
<div class="card-text align-self-center ">
<h5>9892844060</h5>
<p class="card-text ">
<a href="https://www.facebook.com/profile.php?id=100026997312297&mibextid=LQQJ4d "><i class="fab fa-facebook mr-2 "></i></a>
<a href="https://instagram.com/_siddhant.s?igshid=YmMyMTA2M2Y="><i class="fab fa-instagram mr-2 "></i></a>
<a href="https://www.linkedin.com/in/singh-siddhant-6a10ab22a"><i class="fab fa-linkedin "></i></a>
</p>
</div>
</div>
</div>
</div>
<div class="text-center text-white member-info ">
<h3>Siddhant Singh</h3>
<h5>Social Head</h5>
</div>
</div>
</div>
<!-- <div class="card-deck justify-content-center align-items-center ">
<div class="team-member ">
<div class="card bg-dark text-white ">
<img
src="https://github.com/darshjain.png "
alt="User avatar "
class="card-img "
/>
<div
class="card-img-overlay text-center justify-content-center align-items-center "
>
<div
class="position-relative h-100 justify-content-center align-items-center "
>
<div class="card-text align-self-center ">
<h5>9898418391</h5>
<p class="card-text ">
<a href=" "><i class="fab fa-facebook mr-2 "></i></a>
<a href=" "><i class="fab fa-instagram mr-2 "></i></a>
<a href=" "><i class="fab fa-linkedin "></i></a>
</p>
</div>
</div>
</div>
</div> -->
<!-- <div class="text-center text-white member-info ">
<h3>Bhargav Joshi</h3>
<h5>Creative Head</h5>
</div>
</div>
<div class="team-member ">
<div class="card bg-dark text-white ">
<img
src="https://github.com/darshjain.png "
alt="User avatar "
class="card-img "
/>
<div
class="card-img-overlay text-center justify-content-center align-items-center "
>
<div
class="position-relative h-100 justify-content-center align-items-center "
>
<div class="card-text align-self-center ">
<h5>9699609968</h5>
<p class="card-text ">
<a href=" "><i class="fab fa-facebook mr-2 "></i></a>
<a href=" "><i class="fab fa-instagram mr-2 "></i></a>
<a href=" "><i class="fab fa-linkedin "></i></a>
</p>
</div>
</div>
</div>
</div>
<div class="text-center text-white member-info ">
<h3>Manish Pandey</h3>
<h5>Social Media Head</h5>
</div> -->
</div>
</div>
</div>
</section>
<!-- Contact Form -->
<section class="contact " id="contact ">
<div class="section-header ">
<h1 class="section-title ">CONTACT US</h1>
<h2 class="section-tagline ">REACH OUT VIA FORM</h2>
<hr class="section-hr " />
</div>
<div class="container ">
<form class="contact__form " action="https://formspree.io/f/meqpneog " method="POST ">
<div class="form-group contact__form__group ">
<label class="contact__form__label " for="contact__name ">Full Name</label
>
<input
type="text "
class="form-control contact__form__input "
id="contact__name "
aria-describedby="name "
name="name "
/>
</div>
<div class="form-row contact__form__group ">
<div class="col-md-6 mb-2 ">
<label class="contact__form__label " for="contact__email "
>Email Address</label
>
<input
type="email "
class="form-control contact__form__input "
id="contact__email "
name="email "
/>
</div>
<div class="col-md-6 ">
<label class="contact__form__label " for="contact__phone "
>Phone Number</label
>
<input
type="text "
class="form-control contact__form__input "
id="contact__phone "
name="phone "
/>
</div>
</div>
<div class="form-group contact__form__group mt-3 ">
<label class="contact__form__label " for="contact__query "
>Query</label
>
<textarea
id="contact__query "
class="form-control contact__form__input "
rows="5 "
placeholder="I would like to enquire about... "
name="query "
></textarea>
</div>
<div class="contact__form__button__container ">
<button class="btn contact__form__button " type="submit ">
Submit
</button>
</div>
</form>
</div>
</section>
<!-- Footer -->
<footer class="footer row mx-auto ">
<div class="footer__about col-md-4 ">
<h2 class="section-tagline text-white ">E-Cell SLRTCE</h2>
<hr class="section-hr " />
<p class="footer__text mt-3 ">
Unconventional Ideas.<br />Uncompromising Spirit.
</p>
</div>
<div class="footer__copyright col-md-4 ">
<h2 class="section-tagline text-white ">Copyright</h2>
<hr class="section-hr " />
<p class="footer__text mt-3 ">Designed by E-Cell SLRTCE.</p>
</div>
<div class="footer__social col-md-4 ">
<h2 class="section-tagline text-white ">Follow Us</h2>
<hr class="section-hr " />
<div class="footer__social__icons mt-3 ">
<a
class="footer__social__icon "
href="https://www.facebook.com/ecellslrtce.in/ "
rel="noopener noreferrer "
><i class="fab fa-facebook-f "></i
></a>
<a
class="footer__social__icon "
href="https://www.instagram.com/ecell.slrtce/ "
rel="noopener noreferrer "
><i class="fab fa-instagram "></i
></a>
<a
class="footer__social__icon "
href="https://www.linkedin.com/company/e-cell-slrtce "
rel="noopener noreferrer "
><i class="fab fa-linkedin-in "></i
></a>
</div>
</div>
</footer>
<!-- Bootstrap JS -->
<script
src="https://code.jquery.com/jquery-3.5.1.slim.min.js "
integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj "
crossorigin="anonymous "
></script>
<script
src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js "
integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN "
crossorigin="anonymous "
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js "
integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV "
crossorigin="anonymous "
></script>
<!-- Custom scripts -->
<script src="js/social-icon.js "></script>
<script src="js/navigation.js "></script>
<script src="js/contact-form-handler.js "></script>
</body>
</html>