forked from inductor69/BSW-WEBSITE
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanguage_mentorship.php
More file actions
682 lines (521 loc) · 20.2 KB
/
language_mentorship.php
File metadata and controls
682 lines (521 loc) · 20.2 KB
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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Language Mentorship | BSW</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.bundle.min.js" type="text/javascript"></script>
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');
</style>
<style type="text/css">
html {
overflow-y: scroll
}
body{
background-color: rgba(68,215,182,0.18) !important;
}
#page-header{
margin-left: 0;
padding:0;
margin-top:10px;
}
#page-header1{
margin-right: 0;
padding:0;
margin-top:10px;
text-align: right;
}
@media (min-width:769px){
#mh_heading1{
padding-top: 100px;
font-family: Anton;
font-size:5.5rem;
color: rgba(0,0,0,0.70);
letter-spacing: 1.2px;
text-align: center;
text-shadow: 0 2px 4px rgba(0,0,0,0.35);
}
#mh_heading2{
padding-top: 10px;
font-family: Anton;
font-size:1.9rem;
color: rgba(0,0,0,0.70);
letter-spacing: 1.2px;
text-align: center;
text-shadow: 0 1px 2px rgba(0,0,0,0.350);
}
#mh_heading3{
padding-top: 40px;
font-family: Montserrat;
font-size:1.2rem;
color: rgba(0,0,0,0.70);
letter-spacing: 1.2px;
text-align: center;
text-shadow: 0 1px 2px rgba(0,0,0,0.20);
}
.text-my {
color: #000 !important; // Define your own color in your CSS
}
#mh_heading{
padding-top: 10px;
font-family: Montserrat;
font-size:4rem;
color: rgba(0,0,0,0.70);
letter-spacing: 0;
text-align: center;
text-shadow: 0 3px 4px rgba(0,0,0,0.350);
}
#mh_events{
font-family: Montserrat;
font-size: 4rem;
color: rgba(0,0,0,0.70);
letter-spacing: 0;
text-align: center;
text-shadow: 0 2px 4px rgba(0,0,0,0.350);
}
}
@media (max-width:769px){
#mh_events{
padding: 20px;
font-family: Montserrat;
font-size: 50px;
color: rgba(0,0,0,0.70);
letter-spacing: 0;
text-align: center;
text-shadow: 0 2px 4px rgba(0,0,0,0.350);
}
#mh_heading{
padding: 20px;
font-family: Montserrat;
font-size: 40px;
color: rgba(0,0,0,0.70);
letter-spacing: 0;
text-align: center;
text-shadow: 0 2px 4px rgba(0,0,0,0.350);
}
}
.initiative1{
box-shadow: 2px 2px 26px 10px rgba(0,0,0,0.08), inset 0 0 9px 8px rgba(152,152,152,0.05);
margin: 10px;
background: #EA9EC177;
border-radius: 30px;
padding: 30px;
text-align: center;
}
.initiative2{
box-shadow: 2px 2px 26px 10px rgba(0,0,0,0.08), inset 0 0 9px 8px rgba(152,152,152,0.05);
background: #9FE5E3;
border-radius: 30px;
padding: 30px;
text-align: center;
}
.events{
background: #FFFFFF;
box-shadow: 2px 2px 26px 10px rgba(0,0,0,0.08), inset 0 0 9px 8px rgba(152,152,152,0.05);
border-radius: 30px;
padding: 20px;
font-weight: 500;
}
.form-preview{
height:80vh;
}
.vertical-center {
min-height: 100%; /* Fallback for browsers do NOT support vh unit */
min-height: 100vh; /* These two lines are counted as one :-) */
display: flex;
align-items: center;
}
.lottie {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
height: 400px;
margin: 0 0 3rem;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.accent {
background-color: #CDF4EB;
}
.bg-custom {
background-color: #CDF4EB!important;
}
.bg-custom1 {
background-color: #8ed19f!important;
}
.bg-custom2 {
background-color: #ccf6c8!important;
}
.card-img-top:hover{
transform: scale(1.05);
}
.card-img-top1:hover{
transform: scale(1.05);
}
.card-img-top2:hover{
transform: scale(1.05);
}
.box-inner {
background:#CDF4EB;
margin: 2px;
width: 100%;
}
.box-inner1 {
background: #8ed19f;
margin: 2px;
width: 100%;
}
#lm-desc{
text-align: center;
background-color: rgba(68,215,182,0.1);
font-family: Montserrat;
font-weight:500;
font-size: 20px;
text-shadow: 0 2px 4px rgba(0,0,0,0.25);
color: rgba(0,0,0,0.85);
letter-spacing: 0;
text-align: center;
}
#lm-wb{
text-align: center;
font-family: Montserrat;
font-weight:500;
font-size: 20px;
text-shadow: 0 0px 0px rgba(0,0,0,0.25);
color: rgba(0,0,0,0.85);
letter-spacing: 0;
text-align: center;
}
#mentor-tab{
background: #FFFFFF;
box-shadow: 2px 2px 26px 10px rgba(0,0,0,0.08), inset 0 0 9px 8px rgba(152,152,152,0.05);
border-radius: 20px;
padding-top: 10px;
margin: 10px;
text-align: center;
}
#mentor-tab a {
width: 35%;
box-shadow: 2px 2px 26px 10px rgba(0,0,0,0.08), inset 0 0 9px 8px rgba(152,152,152,0.05);
}
.form-preview{
height:80vh;
}
.text-decoration-underline {
text-decoration: underline !important;
}
</style>
</head>
<script type="text/javascript">
(function() {
// Variables
var panel = document.getElementById("js-panel");
var btns = document.querySelectorAll(".flap__btn");
var btnReplay = document.getElementById("js-replay");
// On load, init panel
var init = function() {
panel.classList.add("is--open");
// If btns are clicked, hide panel
// Show replay button
for (var i=0; i < btns.length; i++) {
btns[i].addEventListener("click", function() {
hidePanel();
});
}
function hidePanel() {
panel.classList.remove("is--open");
btnReplay.classList.add("is--active");
}
// When replay button is clicked,
// reset the stage.
btnReplay.addEventListener("click", function() {
resetStage();
});
}
// Hide the button and re-call init
function resetStage() {
btnReplay.classList.remove("is--active");
init();
}
// On load, call init function
window.onload = function() {
init();
}
})();
</script>
<body >
<?php require 'header1.php'; ?>
<?php require 'components/back_to_top.php'; ?>
<div id="page-header">
<div class="container-fluid">
<div class="row">
<div class="col-xs-12 col-sm-7">
</br>
</br>
</br>
<img src="images/main.svg" style="width: 100%; ">
</div>
<div class="col-xs-12 col-sm-5" style="text-align: center;" >
</br>
<div class="clearfix" id="mh_heading3">
<span class="float-right">Language: <a class="text-my text-decoration-underline" href="language_mentorship.php">English</a> | <a class="text-my text-decoration-underline" href="lang_ment_hindi.php">Hindi</a></span>
</div>
<h1 style="font-family: Anton !important;" id="mh_heading1" >Language Mentorship</h1>
<p style="font-family: Anton !important;" id="mh_heading2" >Bridging The Communication Gap </p>
</div>
</div>
</div>
</div>
<br>
<br>
<div id="page-header1">
<div class="container-fluid accent" >
<div class="row">
<div class="col-12 col-lg-6 " >
<h1 style="font-family: Montserrat !important;" id="mh_heading" style="text-align: center;">
<a href="#resources"> <div role="button" class="btn align-self-end"><span class="fa fa-arrow-down fa-lg" > </a></div>Introduction
</h1>
<ul style="list-style-type:disc; text-align: left; font-size: 20px; text-shadow: 0 2px 2px rgba(0,0,0,0.0);">
<li>Language Mentorship is an initiative of BSW that aims to create a holistic ecosystem where students can learn and practice language.</li>
<li> The objective is to help students who are not comfortable with English or Hindi understand and comprehend the language.</li>
<li>This helps the students to adapt to the academic system in IITD and interact with their peers comfortably. This also helps them with assignments and lecture notes and following the classes. Confidence to speak to the teaching assistants and professors is also gained by them.</li>
</ul>
</div>
<div class="col-12 col-lg-6">
<img src="images/into.svg" class= "mx-auto d-block" style="width: 80%; height: 100%">
</div>
</div>
</div>
</div>
</div>
<div id="page-header">
<div class="container-fluid">
<div class="row">
<div class="col-12 col-lg-6">
<img src="images/7.svg" class= "mx-auto d-block" style="width: 80%; height: 100%">
</div>
<div class="col-12 col-lg-6 " >
<h1 style="font-family: Montserrat !important;" id="mh_heading" style="text-align: center;"> Importance Of Communication
</h1>
<h1 style="font-family: Montserrat !important;" id="mh_heading2" style="text-align: center;">(SKILLS AREN’T EVERYTHING)
</h1>
<ul style="list-style-type:disc; text-align: left; font-size: 20px; text-shadow: 0 2px 2px rgba(0,0,0,0.0);">
<li>Every person is unique and we all possess valuable skill sets .
</li>
<li> Naturally, our skills are the ones that earn us a status of some kind.
</li>
<li> We sometimes tend to neglect our presentation skills.
</li>
<li>Skill is only an ingredient for success,which displays its true potential only when supported by the way you communicate and showcase your ideas.
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="page-header1">
<div class="container-fluid accent" >
<div class="row">
<div class="col-12 col-lg-6 " >
<h1 style="font-family: Montserrat !important;" id="mh_heading" style="text-align: center;">Necessity Of Learning English
</h1><h1 style="font-family: Montserrat !important;" id="mh_heading2" style="text-align: center;">(Even On A Global Level)
</h1>
<ul style="list-style-type:disc; text-align: left; font-size: 20px; text-shadow: 0 2px 2px rgba(0,0,0,0.0);">
<li>English is a globally accepted language. Its use has become so common that having a good command over the language is essential.
</li>
<li> When you go out for meetings, attend seminars or talk shows,you need to know english. Even when you go out to travel,you need to read maps, ask the people for directions and what not. It might look like english isn’t important at the moment or in the immediate future.
</li>
<li>Students don’t realise the importance on time and end up being a victim of what is known as language barriers.
</li>
</ul>
</div>
<div class="col-12 col-lg-6">
<img src="images/6.svg"class= "mx-auto d-block" style="width: 80%; height: 100%" ">
</div>
</div>
</div>
<div id="page-header">
<div class="container-fluid">
<div class="row">
<div class="col-12 col-lg-6">
<div class= "lottie">
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
<lottie-player src="https://assets1.lottiefiles.com/packages/lf20_ZAgPRG.json" background="transparent" speed="1" style="width: 400px; height: 400px;" loop autoplay></lottie-player> </div>
</div>
<div class="col-12 col-lg-6 " >
<h1 style="font-family: Montserrat !important;" id="mh_heading" style="text-align: center;">Motivation For Taking Up English Lessons
</h1><h1 style="font-family: Montserrat !important;" id="mh_heading2" style="text-align: center;">(Specifically College And Daily Life)
</h1>
<ul style="list-style-type:disc; text-align: left; font-size: 20px; text-shadow: 0 2px 2px rgba(0,0,0,0.0);">
<li>It forms a part of your daily lives where all the lectures,assignments and interactions are given to you .
</li>
<li> Constant interactions with professors and Teaching assistants.
</li>
<li >All of the presentations and informative sessions usually have information compiled in english.
</li>
</ul>
</div>
</div>
</div>
</div>
<div id="page-header1">
<div class="container-fluid accent" >
<div class="row">
<div class="col-12 col-lg-6 " >
<h1 style="font-family: Montserrat !important;" id="mh_heading" style="text-align: center;">Motivation For Taking Up English Lessons
</h1><h1 style="font-family: Montserrat !important;" id="mh_heading2" style="text-align: center;">(Specifically Interns And Placements)
</h1>
<ul style="list-style-type:disc; text-align: left; font-size: 20px; text-shadow: 0 2px 2px rgba(0,0,0,0.0);">
<li>Interviews and placements have a major part of english speaking.
</li>
<li> When you go for interviews, they cannot judge you completely in such a short period of time but the way you communicate makes a huge difference and makes you stand out from the crowd.
</li>
<li>The way you write your emails trying for an internship or the way you put forward your achievements, every single thing counts and your language again, lies at the core of all this.
</li>
</ul>
</div>
<div class="col-12 col-lg-6">
<img src="images/kids.svg" class= "mx-auto d-block" style="width: 80%; height: 100%">
</div>
</div>
</div>
</div>
</div>
<div id="page-header">
<div class="container-fluid">
<div class="row">
<div class="col-12 col-lg-6">
<img src="images/interview.svg" class= "mx-auto d-block" style="width: 80%; height: 100%">
</div>
<div class="col-12 col-lg-6 " >
<h1 style="font-family: Montserrat !important;" id="mh_heading" style="text-align: center;">English Required In The Future
</h1>
<ul style="list-style-type:disc; text-align: left; font-size: 20px; text-shadow: 0 2px 2px rgba(0,0,0,0.0);">
<li> Most of the meetings and webinars that take place have conversations involving english.
</li>
<li> Articles,newsletters,presentations, everything is done in english.
</li>
<li >Announcements, seminars and instructions at your daily job ,all of it is conveyed in english.
</li>
<li >Even if it doesn’t seem useful right now,no matter what you do later on , your communication skills will come in handy .
</li>
</ul>
</div>
</div>
</div>
</div>
</br></br>
<a id="resources"></a>
<div class="container">
<div class="row">
<div class="col-12 col-md-4 box d-flex">
<div class="card bg-custom">
<img class="card-img-top" src="images/book.svg" style="width: 100%; height: 50%;" alt="Card image cap">
<div class="card-body ">
<h5 style="text-align:center;" class="card-title " >WORKBOOK</h5>
<p class="card-text">The WorkBook is a complete A To Z module which is going to help any Beginner to be College Ready and it is developed in such a way that people with no prior knowledge about English can work on their own without anyone’s guidance.</p>
</div>
</div>
</div>
<div class="col-12 col-md-4 box d-flex">
<div class="card bg-custom1">
<img class="card-img-top1" src="images/videoo.svg" style="width: 100%; height: 50%;" alt="Card image cap">
<div class="card-body">
<h5 style="text-align:center;" class="card-title">VIDEO WALKTHROUGH</h5>
<p class="card-text">A step by step tutorial has been provided illustrating the process to enroll in the _______
program. This is free of cost for the students of IIT Delhi. If you face any other issues or have any queries, mention it in the form below and we will help you resolve it. Happy learning!</p>
</div>
</div>
</div>
<div class="col-12 col-md-4 box d-flex">
<div class="card bg-custom2">
<img class="card-img-top mx-auto d-block" src="images/orga.svg" style= "width: 90%; height:50%;" alt="Card image cap">
<div class="card-body">
<h5 style="text-align:center;" class="card-title">PAIRED UP ORGANISATION</h5>
<p class="card-text">BSW is glad to announce the collaboration with _______. This is the first time in the history of IITD that a renowned organization is providing you an opportunity to learn English. This partnership is a big step towards reducing the language barrier among students and ensuring a comfortable stay for them.</p>
</div></div>
</div>
</div>
</div>
<div class="container justify-content-center mb-4" id="lm-wb">
<div class="row justify-content-center">
<div class="col-12 mt-4 about-us-title justify-content-center" style="text-align: center; font-family: Montserrat !important;">
<h1 style="font-family: Montserrat !important; ">
The Workbook
</h1>
</div>
<div class="col-12 my-4">
This year we have created a pedagogical tool, the activity workbook in English. You can work on enhancing and elaborating the study material further in both English and Hindi. <br>
<a href="misc/lang_workbook.pdf" target="_blank" rel="noopener noreferrer" class="btn btn-primary my-4" style={display:inline;}><span class="fa fa-download fa-lg"></span> Download Workbook</a>
<div class="card col-12 my-4">
<embed src="misc/lang_workbook.pdf" class="form-preview">
</div>
</div>
</div>
</div>
</br>
</br>
<div class= "container">
<div class="container justify-content-center mb-4" id="lm-wb">
<div class="row justify-content-center">
<div class="col-12 mt-4 about-us-title justify-content-center" style="text-align: center; font-family: Montserrat !important;">
<h1 style="font-family: Montserrat !important; ">
How language shapes the way we think
</h1>
</div>
<div class="col-12 my-4">
There are about 7,000 languages spoken around the world -- and they all have different sounds, vocabularies and structures. But do they shape the way we think? Cognitive scientist Lera Boroditsky shares examples of language <br>
</div>
</div>
</div>
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/RKK7wGAYP6k?rel=0" allowfullscreen></iframe>
</div>
</div>
<br>
<div class= "container">
<div class="container justify-content-center mb-4" id="lm-wb">
<div class="row justify-content-center">
<div class="col-12 mt-4 about-us-title justify-content-center" style="text-align: center; font-family: Montserrat !important;">
<h1 style="font-family: Montserrat !important; ">
Does Grammar matter ?
</h1>
</div>
<div class="col-12 my-4">
It can be hard sometimes, when speaking, to remember all of the grammatical rules that guide us when we’re writing. When is it right to say “the dog and me” and when should it be “the dog and I”? Does it even matter? Senior Lecturer and convenor of linguistics at University of Waikato, Dr.Andreea S. Calude shares her opnion. <br>
</div>
</div>
</div>
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/Wn_eBrIDUuc?rel=0" allowfullscreen></iframe>
</div>
</div>
</br>
<div class= "container">
<div class="container justify-content-center mb-4" id="lm-wb">
<div class="row justify-content-center">
<div class="col-12 mt-4 about-us-title justify-content-center" style="text-align: center; font-family: Montserrat !important;">
<h1 style="font-family: Montserrat !important; ">
Why English and Communication skills are important?
</h1>
</div>
</div>
</div>
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/cBpUkghEWWg?rel=0" allowfullscreen></iframe>
</div>
</div>
</br>
</div>
<?php require 'components/footer.php'; ?>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" i0degrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" i0degrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
</body>
</html>