-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
962 lines (912 loc) · 38.3 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
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>Entrepreneurship Cell, SSTC Bhilai</title>
<meta name="author" content="E-Cell SSTC">
<meta name="title" content="Entrepreneurship Cell, SSTC Bhilai">
<meta name="description" content="E-Cell SSTC is a student-run non-profit organization that has been established in Shri Shankaracharya Group of Institutions, Bhilai.">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://ecellsstc.org.in/">
<meta property="og:title" content="Entrepreneurship Cell, SSTC Bhilai">
<meta property="og:description" content="E-Cell SSTC is a student-run non-profit organization that has been established in Shri Shankaracharya Group of Institutions, Bhilai.">
<meta property="og:image" content="images/logo/meta_ecell.png">
<meta property="og:site_name" content="E-CELL, SSTC Bhilai">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:url" content="https://ecellsstc.org.in/">
<meta property="twitter:title" content="Entrepreneurship Cell, SSTC Bhilai">
<meta property="twitter:description" content="E-Cell SSTC is a student-run non-profit organization that has been established in Shri Shankaracharya Group of Institutions, Bhilai.">
<meta property="twitter:image" content="images/logo/meta_ecell.png">
<meta name="twitter:image:alt" content="E-CELL, SSTC Bhilai">
<meta name="twitter:creator" content="@ashish11chawda @77141612h @Sameer_Nayak_26">
<!-- META TAGS -->
<meta name="format-detection" content="telephone=no">
<meta name="distribution" content="global">
<meta name="revisit-after" content="Daily">
<meta name="rating" content="general">
<meta name="robots" content="index, follow">
<meta name="googlebot" content="index, follow ">
<meta name="bingbot" content=" index, follow ">
<meta name="abstract" content="E-CELL SSTC">
<meta name="alexa" content="100">
<!-- FAVICON FILES -->
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="manifest.json">
<!-- CANONICAL -->
<link rel="canonical" href="https://Ecellsstc.org.in/" />
<script defer src="https://kit.fontawesome.com/a076d05399.js"></script>
<link
rel="stylesheet"
href="https://unpkg.com/swiper/swiper-bundle.min.css"
/>
<link rel="stylesheet" href="css/event_slider.css" />
<link rel="stylesheet" href="css/gallery_carasouel.css" />
<link rel="stylesheet" href="css/team_css.css" />
<link rel="stylesheet" href="css/accomplishmentcss.css" />
<link rel="stylesheet" href="css/achievementcss.css" />
<link rel="stylesheet" href="css/contactus.css" />
<link rel="stylesheet" href="css/govt._scheme.css" />
<link rel="stylesheet" href="css/footer.css" />
<link rel="stylesheet" href="css/aboutus.css" />
<link
href="https://fonts.googleapis.com/css?family=Barlow:400,500,700|Vidaloka"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/sidebar.css" />
<link rel="stylesheet" type="text/css" href="css/base.css" />
<link rel="stylesheet" type="text/css" href="css/demo6.css" />
<link rel="stylesheet" href="css/style.css">
<!-- <link rel="stylesheet" type="text/css" href="pater/pater.css" /> -->
<script>document.documentElement.className="js";var supportsCssVars=function(){var e,t=document.createElement("style");return t.innerHTML="root: { --tmp-var: bold; }",document.head.appendChild(t),e=!!(window.CSS&&window.CSS.supports&&window.CSS.supports("font-weight","var(--tmp-var)")),t.parentNode.removeChild(t),e};supportsCssVars()||alert("Please view this demo in a modern browser that supports CSS Variables.");</script>
<!--<link rel="shortcut icon" href="favicon.ico">-->
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" >
<link rel="stylesheet" type="text/css" href="css/sidebar.css">
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.12.1/js/all.js" data-auto-replace-svg="nest"></script>
</head>
<body onload="loadfun()" >
<main>
<!--Discord img-->
<a href="https://discord.gg/wc44X5RZfR" target="_blank">
<img class="discordlogo" src="./images/logo/join_discord.png" alt="DiscordLogo">
</a>
<div id="loading"></div>
<!-- division of section -->
<section id="home">
<div class="homepage">
<div class="homepagetext">
<div class="content">
<canvas class="scene scene--full" id="scene"></canvas>
<div class="content__inner">
<h2 class="content__title">E-CELL</h2>
<h3 class="content__subtitle">
SHRI SHANKARACHARYA TECHNICAL CAMPUS
</h3>
</div>
<nav class="side-menu">
<ul>
<li>
<button onclick="myfunction()">Change Theme</button><span class="side-span">
<!-- <i><img src="images/logo/e-cell.png" width="24px" alt=""></i>
-->
<i class="fas fa-adjust"></i></span></a>
</li>
<li>
<a href="#home"
>Home<span class="side-span">
<!-- <i><img src="images/logo/e-cell.png" width="24px" alt=""></i>
-->
<i class="fas fa-home"></i></span></a>
</li>
<!-- <li><a href="">TEAM<span class="side-span" ><i class="fas fa-users"></i></span> </a></li> -->
<li>
<a href="#event-section"
>EVENTS<span class="side-span"
><i class="fas fa-calendar-week"></i></span></a>
</li>
<li>
<a href="#achievement"
>ACHIEVEMENT<span class="side-span"
><i class="fas fa-trophy"></i
></span>
</a>
</li>
<li>
<a href="#slider"
>GALLERY<span class="side-span"
><i class="fas fa-camera-retro"></i
></span>
</a>
</li>
<li>
<a href="#scheme"
>SCHEME<span class="side-span"
><i class="fas fa-hand-holding-usd"></i></span>
</a>
</li>
<li>
<a href="#accomplishment"
>INCUBATIONS<span class="side-span"
><i class="fas fa-certificate"></i></span>
</a>
</li>
<li>
<a href="#about"
>ABOUT US<span class="side-span"
><i class="fa fa-info-circle"></i
></span>
</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</section>
<!-- event section -->
<section id="event-section">
<h2 class="sec-head">EVENTS ORGANISED</h2>
<div class="swiper-container" id="event">
<div class="swiper-wrapper">
<div class="swiper-slide">
<a href="./src/event-section.html#3d-printing-workshop">
<div class="imgBx">
<img src="images/g1.png" />
</div>
<div class="details">
<h3>3D PRINTING WORKSHOP<br />(2017)</h3>
</div>
</a>
</div>
<!-- <div class="swiper-slide">
<a href="./src/event-section.html">
<div class="imgBx">
<img src="images/g2.png" />
</div>
<div class="details">
<h3>DISPURT<br />2018</h3>
</div>
</a>
</div>
<div class="swiper-slide">
<a href="./src/event-section.html">
<div class="imgBx">
<img src="images/g3.png" />
</div>
<div class="details">
<h3>KAIZEN<br />2018</h3>
</div>
</a>
</div> -->
<div class="swiper-slide">
<a href="./src/event-section.html#tech-fair">
<div class="imgBx">
<img src="images/g4.png" />
</div>
<div class="details">
<h3>TECH FAIR<br />2018</h3>
</div>
</a>
</div>
<div class="swiper-slide">
<a href="./src/event-section.html#36-inc">
<div class="imgBx">
<img src="images/g5.png" />
</div>
<div class="details">
<h3>36 INC TRIP<br />2019</h3>
</div>
</a>
</div>
<div class="swiper-slide">
<a href="./src/event-section.html#graphic-design-workshop">
<div class="imgBx">
<img src="images/g9.png" />
</div>
<div class="details">
<h3>GRAPHIC DESIGN WORKSHOP<br />2018</h3>
</div>
</a>
</div>
<div class="swiper-slide">
<a href="./src/event-section.html#bootcamp">
<div class="imgBx">
<img src="images/g7.png" />
</div>
<div class="details">
<h3>E-BOOT CAMP<br />2019</h3>
</div>
</a>
</div>
<div class="swiper-slide">
<a href="./src/event-section.html#E-Awareness-Drive-18">
<div class="imgBx">
<img src="images/g11.png" />
</div>
<div class="details">
<h3>E-AWARENESS DRIVE<br />2018</h3>
</div>
</a>
</div>
<div class="swiper-slide">
<a href="./src/event-section.html#Aarambh">
<div class="imgBx">
<img src="images/g6.png" />
</div>
<div class="details">
<h3>AARAMBH<br />2019</h3>
</div>
</a>
</div>
<div class="swiper-slide">
<a href="./src/event-section.html#E-Awareness-Drive-19">
<div class="imgBx">
<img src="images/g8.png" />
</div>
<div class="details">
<h3>E-AWARENESS DRIVE<br />2019</h3>
</div>
</a>
</div>
<div class="swiper-slide">
<a href="src\event-section.html" class="see-more-a">SEE MORE</a>
</div>
</div>
</div>
<div class="gallery-link">
<a href="src/event-section.html"><span>SEE MORE<i class="fas fa-chevron-right"></i></span></a>
</div>
<!-- Add Pagination -->
<!-- Swiper JS -->
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<!-- Initialize Swiper -->
<script>
var swiper = new Swiper(".swiper-container", {
effect: "coverflow",
grabCursor: true,
centeredSlides: true,
slidesPerView: "auto",
coverflowEffect: {
rotate: 50,
stretch: 0,
depth: 500,
modifier: 1,
slideShadows: true,
},
pagination: {
el: ".swiper-pagination",
},
});
</script>
</section>
<!-- accomplishment section -->
<section id="accomplishment">
<h2 class="sec-head">START-UP INCUBEESE</h2>
<article class="accom">
<div class="wrapper">
<div class="inside">
<div class="icon">
<i class="fa fa-info-circle fa-2x" aria-hidden="true"></i>
</div>
<div class="contents">
<p class="content-text">
The super-magnet using field electricity generator is a new
design on the principle of Faraday, the inner rotatory pule
revolves in a electrostatic cage which strenthen its magnetic
field by 7.32 times of the traditional generators hence it'll
be a better option against the present ones for the coming
days.
</p>
</div>
</div>
<div class="container">
<div class="face face1">
<img loading="lazy"
src="images/Dhiru_project.jpg"
alt=""
/>
</div>
<div class="face face2">
<div class="person-img">
<img loading="lazy" src="images/Dhirendra_new.jpg" alt="" />
</div>
<div class="details">
<h3 class="acco-head">
Super Magnet Inspired Field Energy Generator
</h3>
<p><span>Dhirendra Pratap Singh Suryavanshi</span></p>
</div>
</div>
</div>
</div>
<div class="wrapper">
<div class="inside">
<div class="icon">
<i class="fa fa-info-circle fa-2x" aria-hidden="true"></i>
</div>
<div class="contents">
<p class="content-text">
India's largest network of 5-star pet sitters and dog walkers,
founded in 2019, provides in-home dog boarding, pet-sitting,
dog-walking, or day care. Petixa India connects pet parents
with dog people who'll treat their pets like family. Generated
632 jobs till 8th of July 2020, and we are constantly growing
day by day.
</p>
</div>
</div>
<div class="container">
<div class="face face1">
<img loading="lazy"
src="images/Petixa.jpeg"
alt=""
/>
</div>
<div class="face face2">
<div class="person-img">
<img loading="lazy" src="images/parth_mishra.png" alt="" />
</div>
<div class="details">
<h3 class="acco-head">PETIXA India!</h3>
<p><span>Parth Mishra</span></p>
</div>
</div>
</div>
</div>
<div class="wrapper">
<div class="inside">
<div class="icon">
<i class="fa fa-info-circle fa-2x" aria-hidden="true"></i>
</div>
<div class="contents">
<p class="content-text">
The dolphy automatic sanitizer is an ultra-sanitary sanitizer
dispenser that has a built-in motion detector, when it sense
your hands under the spot to dispense, it'll provide you the
perfect amount of liquid sanitizer automatically to get your
hands quickly clean
<br />Smart Sensor Technology <br />No Touch = No Germs
</p>
</div>
</div>
<div class="container">
<div class="face face1">
<img loading="lazy"
src="images/sanitizer.jpg"
alt=""
/>
</div>
<div class="face face2">
<div class="person-img">
<img loading="lazy" src="images/harsh_jain.jpeg" alt="" />
</div>
<div class="details">
<h3 class="acco-head">Auto Hand Sanitizer</h3>
<p><span>Harsh Jain</span></p>
</div>
</div>
</div>
</div>
</article>
</section>
<!-- ACHIEVEMENT section -->
<section id="achievement">
<h2 class="sec-head">ACHIEVEMENT</h2>
<article class="accomplishment"></article>
<article class="timeline">
<div class="content-container">
<div class="content1">
<div class="position-icon">
<img loading="lazy" src="images/8th.png" alt="" />
</div>
<div class="text-content">
<h2 class="person-name">
Harsh Jain, Akask Dubey, Nishant Roy
</h2>
<h3 class="name-body">
Covackathon 2021 <br> First prize in 3-D designing of the product in Autodesk <br> (<i class="fas fa-rupee-sign"></i> 50,000)
</h3>
</div>
</div>
</div>
<div class="content-container">
<div class="content1">
<div class="position-icon">
<img loading="lazy" src="images/8th.png" alt="" />
</div>
<div class="text-content">
<h2 class="person-name">
Harsh Jain, Akask Dubey, Nishant Roy
</h2>
<h3 class="name-body">
Covackathon 2021 <br> Third prize <br> Designed AI Powered Automatic Microscope
</h3>
</div>
</div>
</div>
<div class="content-container">
<div class="content1">
<div class="position-icon">
<img loading="lazy" src="images/1st.png" alt="" />
</div>
<div class="text-content">
<h2 class="person-name">
Tarun Baghel
</h2>
<h3 class="name-body">
Smart India Hackathon <br> (<i class="fas fa-rupee-sign"></i> 1,00,000)
</h3>
</div>
</div>
</div>
<div class="content-container">
<div class="content1">
<div class="position-icon">
<img loading="lazy" src="images/1st.png" alt="" />
</div>
<div class="text-content">
<h2 class="person-name">
Harsh Jain, Umang Patre, Prakhar Pandey
</h2>
<h3 class="name-body">
Hackathon "Ideate, Literate, Culminate" <br> (<i class="fas fa-rupee-sign"></i> 10,000)
</h3>
</div>
</div>
</div>
<div class="content-container">
<div class="content1">
<div class="position-icon">
<img loading="lazy" src="images/5th.png" alt="" />
</div>
<div class="text-content">
<h2 class="person-name">
Dhirendra Pratap Singh Suryavanshi & Srijan Vaishnav
</h2>
<h3 class="name-body">
Makethon Consolation Prize <br> (<i class="fas fa-rupee-sign"></i> 2,500)
</h3>
</div>
</div>
</div>
<div class="content-container">
<div class="content1">
<div class="position-icon">
<img loading="lazy" src="images/1st.png" alt="" />
</div>
<div class="text-content">
<h2 class="person-name">
Dhirendra Pratap Singh Suryavanshi
</h2>
<h3 class="name-body">
Idea Conclave <br> (<i class="fas fa-rupee-sign"></i> 3,000)
</h3>
</div>
</div>
</div>
<div class="content-container">
<div class="content1">
<div class="position-icon">
<img loading="lazy" src="images/3rd.png" alt="" />
</div>
<div class="text-content">
<h2 class="person-name">
Abhishek Seth & Team
</h2>
<h3 class="name-body">
Hackathon 2.0 <br> (<i class="fas fa-rupee-sign"></i> 10,000)
</h3>
</div>
</div>
</div>
<div class="content-container">
<div class="content1">
<div class="position-icon">
<img loading="lazy" src="images/8th.png" alt="" />
</div>
<div class="text-content">
<h2 class="person-name">
Harsh Jain & Team
</h2>
<h3 class="name-body">
Makethon Consolation Prize <br> (<i class="fas fa-rupee-sign"></i> 3,000)
</h3>
</div>
</div>
</div>
</article>
</section>
<!-- gallery section -->
<h2 class="sec-head">GALLERY</h2>
<section id="slider">
<input type="radio" name="slider" id="s1" />
<input type="radio" name="slider" id="s2" />
<input type="radio" name="slider" id="s3" checked />
<input type="radio" name="slider" id="s4" />
<input type="radio" name="slider" id="s5" />
<label for="s1" id="slide1">
<img loading="lazy" src="images/1.png" height="100%" width="100%" />
</label>
<label for="s2" id="slide2">
<img loading="lazy" src="images/2.png" height="100%" width="100%" />
</label>
<label for="s3" id="slide3">
<img loading="lazy" src="images/3.png" height="100%" width="100%" />
</label>
<label for="s4" id="slide4">
<img loading="lazy" src="images/4.png" height="100%" width="100%" />
</label>
<label for="s5" id="slide5">
<img loading="lazy" src="images/5.png" height="100%" width="100%" />
</label>
<!-- <div class="images">
<a href="#"><i class="fa fa-2x fa-chevron-circle-right" aria-hidden="true">MORE IMAGE</i>
</a>
</div> -->
</section>
<div class="gallery-link">
<a href="src/gallery.html"><span>MORE IMAGES <i class="fas fa-chevron-right"></i></span></a>
</div>
<!-- scheme sec -->
<div class="contenedor" id="scheme">
<h2 class="sec-head">SCHEME</h2>
<div class="tarjeta">
<div class="contenido">
<img loading="lazy"
src="images/SERB, Science and Engineering Research Board.png"
class="imagen"
/>
</div>
<div class="texto">
<p>
ExtraMural Research or Core Research Grant<br /><br />Extramural
Research (EMR) funding scheme of SERB to academic institution,
research ...
</p>
<div class="vermas"><a target="_blank" href="https://www.startupindia.gov.in/content/sih/en/government-schemes/extra-mural-research.html">More</a></div>
</div>
</div>
<div class="tarjeta">
<div class="contenido">
<img loading="lazy"
src="images/Biotechnology industry research assistance council.png"
class="imagen size_change"
/>
</div>
<div class="texto">
<p>
Small Business Innovation Research Initiative (SBIRI)<br /><br />The
SBIRI scheme of
the Department of Biotechnology, Ministry of Science...
</p>
<div class="vermas"><a target="_blank" href="https://www.startupindia.gov.in/content/sih/en/government-schemes/Small-business-innovation-research-initiative.html">More</a></div>
</div>
</div>
<div class="tarjeta">
<div class="contenido">
<img loading="lazy"
src="images/MINISTRY OF Science and Technology.png"
class="imagen size_change"
/>
</div>
<div class="texto">
<p>
Multiplier Grants Scheme<br /><br />MGS aims to encourage
collaborative R&D between industry and academics/ R&D...
</p>
<div class="vermas"><a target="_blank" href="https://www.startupindia.gov.in/content/sih/en/government-schemes/multiplier-grant-scheme.html">More</a></div>
</div>
</div>
<div class="tarjeta">
<div class="contenido">
<img loading="lazy" src="images/Mudra Yojna.jpg" class="imagen size_change" />
</div>
<div class="texto">
<p>
Pradhan Mantri Mudra Yojana<br /><br />Micro Units Development and
Refinance Agency Ltd. [MUDRA] is...
</p>
<div class="vermas"><a target="_blank" href="https://www.startupindia.gov.in/content/sih/en/government-schemes/micro-units-development-refinance-agency.html">More</a></div>
</div>
</div>
<div class="tarjeta">
<div class="contenido">
<img loading="lazy"
src="images/Ministry of Micro Small and Medium Enterprise.png"
class="imagen"
/>
</div>
<div class="texto">
<p>
Single Point Registration Scheme (SPRS)<br /><br />The Government
is the single largest buyer of a variety of goods...
</p>
<div class="vermas"><a target="_blank" href="https://www.startupindia.gov.in/content/sih/en/government-schemes/single-point-registration.html">More</a></div>
</div>
</div>
<div class="tarjeta">
<div class="contenido">
<img loading="lazy" src="images/NMDFC PNG.png" class="imagen" />
</div>
<div class="texto">
<p>
Virasat - A Credit Scheme for Craftpersons<br /><br />The purpose
of this scheme is to help Artisians and Craftpersons...
</p>
<div class="vermas"><a target="_blank" href="https://www.startupindia.gov.in/content/sih/en/government-schemes/virasat_credit_scheme_for_craftpersons.html">More</a></div>
</div>
</div>
</div>
<!--OUR ASSOCIATES -->
<div class="contenedor" id="scheme">
<h2 class="sec-head">OUR COLLABS</h2>
<div class="tarjeta">
<div class="contenido">
<img src="images/Ministry of Micro Small and Medium Enterprise.png" class="imagen size_change" />
</div>
<div class="texto">
<p>
Ministry of Human Resource Development (MHRD)<br /><br />The Ministry of Human Resource Development (1985–2020), is responsible for the
implementation...
</p>
<div class="vermas"><a target="_blank"
href="https://www.mhrd.gov.in/">More</a>
</div>
</div>
</div>
<div class="tarjeta">
<div class="contenido">
<img src="images/msme logo.png" class="imagen size_change" />
</div>
<div class="texto">
<p>
Ministry of Micro, Small & Medium Enterprises (MSME)<br /><br />The statistics provided by the annual reports of Ministry of Small and Medium Enterprises (MSME)...
</p>
<div class="vermas"><a target="_blank"
href="https://msme.gov.in/">More</a>
</div>
</div>
</div>
<div class="tarjeta">
<div class="contenido">
<img src="images/IIC.png" class="imagen size_change" />
</div>
<div class="texto">
<p>
Institution’s Innovation Council (IIC)<br /><br />The IIC Institute which has nominated the prototype(s) should check the status of submission of Assignments...
</p>
<div class="vermas"><a target="_blank"
href="https://www.mic.gov.in/innovation-council/iic">More</a>
</div>
</div>
</div>
</div>
<!--ecell magazine section-->
<center><b></b><h2 style="color: rgb(255, 255, 255);font-size: 40px;
font-family: 'Montserrat', Courier, monospace;
font-weight: 600;">ECELL MAGAZINE</h2></b>
<p style="color: var(--text-color4);
padding-left:10%;
padding-right:10%;
font-family: 'Raleway', Courier, monospace;font-size:13px;">Here we present to you the annual magazine of the E-Cell SSTC, which gives the quick glance of the
year around activities, achievements and the ideas of E-Cell. Through this magazine we also gives you
the knowledge of the greate entreprenuers and the comprehensive view of entrepreneurship going on in
recent times. To get the quick glimpse of magazine click the button below.</p>
</center>
</magaline>
<br>
<br>
<center>
<div class="box">
<a href="src\magazinepage.html">
<buttn>
E-CELL MAGAZINE
</buttn>
</a>
</div>
</center>
<!-- about us section -->
<section id="about">
<h2 class="sec-head">ABOUT US</h2>
<p class="mission-vision">MISSION</p>
<div class="about-us-container">
<p class="about-us-content">We look towards incorporating the entrepreneurship and intraepreneurship as potential abilities of the individuals by
being a platform to cater the same.</p>
</div>
<p class="mission-vision">VISION</p>
<div class="about-us-container">
<p class="about-us-content">To develop the entrepreneurial environment by providing easy and effective interaction i of the student body,
experienced professionals successful entrepreneurs ,investors, venture capitalist and corporate.</p>
</div>
<p class="mission-vision">AT OUR END</p>
<div class="about-us-container">
<p class="about-us-content">
E-Cell SSTC is a student run non-profit organization which has been
established in Shri Shankaracharya Group of Institutions, Bhilai,
since 07/10/2017. E-Cell, SSTC targets to help in the development of
entrepreneurial ecosystem by enabling easy and efficient interaction
between its major components spanning students, working
professionals, aspiring and existing entrepreneurs, mentors, angel
investors, venture capital firms and corporate through events like
interactive sessions, competitions and activities.<br/><br/>
E-Cell SSTC aim to create awareness among students of Engineering
and Science courses about various facets of entrepreneurship as an
alternative career option and also to highlight the merits of
pursuing such an option.<br/><br/>
E-Cell SSTC is a club that promotes the business ideas, arrange the
necessary aid and act as a bridge to get the funding from the
various agencies. E-Cell SSTC also organizes the various
entrepreneurial and personality development activities with in the
campus.<br /><br />
</p>
</div>
<div class="team-link">
<a href="src/teams.html"><span><i class="fas fa-users"></i>MEET OUR TEAM</span></a>
</div>
</section>
<!-- CAMPUS AMBASSADOR section -->
<section id="about">
<h2 class="sec-head">CAMPUS AMBASSADOR PROGRAM</h2>
<p class="mission-vision">"2021-22"</p>
<div class="about-us-container">
<p class="about-us-content">E-CELL SSTC is glad to announce the commencement of the 6 months long "CAMPUS AMBASSADOR PROGRAM". <br/><br/>
This is a perfect opportunity for those students who tend to look beyond their academic curriculum and are inclined
towards exploring various possibilities in the field of innovation, technology design thinking, marketing, and building
a startup.
</p>
</div>
<br/><br/>
<div class="team-link">
<a href="src/campus-ambassador.html"><span><i class=""></i>REGISTER HERE</span></a>
</div>
</section>
<!--<section id="contact-us">
<a id="contact-form-link" href="https://forms.gle/uvWGxT1XJX1L43Kt7" target="_blank" rel="noopener noreferrer"><p>Contact Us</p></a>
</section>-->
<!-- contact us section -->
<!--<script src="https://www.gstatic.com/firebasejs/7.19.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.19.1/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.19.1/firebase-database.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.19.1/firebase-analytics.js"></script>-->
<!--<section class="contact-wrapper">
<div class="contact-card">
<h2>Contact us</h2>
<div id="error_message"></div>
<form action="" id="myform" >
<div class="input_field">
<input type="text" placeholder="Name" id="name" required />
</div>
<div class="input_field">
<input type="text" placeholder="Subject" id="subject" />
</div>
<div class="input_field">
<input type="text" placeholder="Email" id="email" required />
</div>
<div class="input_field">
<textarea placeholder="Message" id="message" required ></textarea>
</div>
<div class="btn">
<input type="submit" />
</div>
</form>
</div>
</section>-->
<!-- <script src="script/contact.js"></script> -->
<script src="script/demo.js"></script>
<script src="script/three.min.js"></script>
<script src="script/demo6.js"></script>
<!-- <script src="js/classie.js"></script>
<script src="js/clipboard.min.js"></script>
-->
<footer>
<div class="footer-container">
<div class="left-col">
<div class="footer-content">
<div class="logo-content">
<div class="logo-image">
<img src="images/logo/e-cell.png" alt="" class="logo" />
</div>
<div class="logo-name">
<span class="ecell">E-CELL</span><br />
Shri Shankaracharya Technical Campus
</div>
</div>
<div class="address">
<a
target="_blank"
rel="noopener noreferrer"
href="https://goo.gl/maps/Hkz5Mmp7Pn2g13sD8"
>
Junwani, Bhilai, Distt. Durg<br />Chhattisgarh- 490020
</a>
</div>
<div class="contact-link">
<a
target="_blank"
rel="noopener noreferrer"
href="tel:0788-4088888"
>
<i class="fas fa-phone-alt"></i>
</a>
<a
target="_blank"
rel="noopener noreferrer"
href="mailto:[email protected]"
>
<i class="fas fa-envelope"></i>
</a>
</div>
</div>
</div>
<div class="right-col">
<h2>Our Newsletter</h2>
<div class="border"></div>
<p>Enter Your Email to get our news and updates.</p>
<form action="POST" data-netlify="true" id="newsletter-form1" class="newsletter-form">
<input
type="email"
class="txtb"
name="email"
id="newsletter-email"
placeholder="Enter Your Email"
required
/>
<!-- <input type="submit" class="btn" value="Submit"> -->
<button class="sub-btn" type="submit">Submit</button>
</form>
<div id="contact-us">
<a id="contact-form-link" href="https://forms.gle/jTkVD4bHWJvctRuy6" target="_blank" rel="noopener noreferrer"><p><i class="fas fa-envelope"></i>Contact Us</p></a>
</div>
</div>
</div>
<hr />
<div class="social-media">
<a href="https://www.facebook.com/ecell.sstc.5"
><i class="fab fa-facebook-f"></i
></a>
<a href="https://www.instagram.com/ecell_sstc/"
><i class="fab fa-instagram"></i
></a>
<a href="https://www.youtube.com/channel/UCkCTuF5Iefw81TTn5QYI4jg"
><i class="fab fa-youtube"></i
></a>
<a href="https://www.linkedin.com/in/ecell-sstc-bhilai-15aa78195/"
><i class="fab fa-linkedin-in"></i
></a>
<a href="https://discord.gg/wc44X5RZfR"
><i class="fab fa-discord"></i
></a>
</div>
<div class="footer-bottom">
<p class="rights-text">
© 2022 E-CELL,SSTC |
<a href="src/phoenix.html" >
Designed by Team Phoenix
</a>
</p>
</div>
</footer>
</main>
<!-- <script src="script/newsletter.js"></script>-->
<script>
var preloader=document.getElementById('loading');
function loadfun()
{
preloader.style.display='none';
}
function myfunction()
{
var element=document.body;
element.classList.toggle('light');
}
</script>
</body>
</html>