-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathonlinedegrees1.html
750 lines (625 loc) · 33.2 KB
/
onlinedegrees1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<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=Fira+Sans:wght@100;500&family=Hind+Siliguri&family=Montserrat:wght@100&family=Open+Sans:wght@300&family=Sacramento&family=Source+Sans+Pro&family=Supermercado+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./sharadstyles/navbar.css">
<link rel="stylesheet" href="./footer/footer.css"/>
<title>Document</title>
<style>
body{
font-family: 'Source Sans Pro', sans-serif;
}
#headerBox
{
height:550px ;
width:100% ;
background-color: #00255D;
display:flex;
gap:25px;
margin-bottom: 100px;
padding-right: 160px;
}
#heading
{
height:300px;
width:364px ;
color:white;
margin: auto;
/* border:1px solid red; */
margin-left: 300px;
/* font-family: 'Source Sans Pro', sans-serif; */
font-size: 22px;
margin-top: 80px;
}
#inputDiv
{
height: 430px;
width: 350px;
margin: auto;
border:1px solid black;
background-color: white;
border-radius: 8px;
padding-left: 30px;
padding-top: 20px;
}
#paraTag{
/* line-height: 0.2px; */
font-weight: 600;
}
select{
height: 50px ;
width:300px;
border-radius: 4px;
margin-bottom: 10px ;
}
#inputBtn
{
height:50px;
width:300px;
border-radius: 4px;
margin-top: 10px;
margin-bottom: 7px;
}
#explore
{
display: grid;
width: 90%;
grid-template-columns: repeat(4,1fr);
grid-template-rows: 80px 20px 80px 20px;
gap:20px;
/* border:1px solid teal ; */
margin: auto ;
margin-bottom: 100px;
}
#explore > div{
/* border:1px solid red ; */
text-align:center;
}
#explore > div > a{
color:white ;
text-decoration: none;
}
#explore > div > a:hover{
text-decoration:underline;
color:white;
}
#rightDegree
{
display: grid;
width:85% ;
grid-template-columns: repeat(3,1fr);
grid-template-rows: 250px;
gap:20px ;
margin: auto;
margin-bottom: 100px;
}
#rightDegree > div{
/* border : 1px solid black; */
padding-left: 20px;
padding-right: 20px;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
border-radius: 10px;
}
#anchorTag
{
color:#0056D2 ;
font-size: large;
}
#leadingUniversity
{
display: grid;
grid-template-columns:repeat( 3,460px);
grid-template-rows: 120px 120px;
/* border: 1px solid green; */
gap:20px ;
margin: auto;
margin-left: 20px;
margin-bottom: 100px;
}
#leadingUniversity > div{
margin-bottom: 20px;
display: flex;
width: 460px;
height: 100px;
margin-bottom: 20px;
margin-right: 20px;
}
#leadingUniversity > div >img
{
height:100% ;
width:100% ;
}
#plans{
margin-left: 20px ;
}
#plans > p
{
margin-top: -6px;
}
#plans > a{
text-decoration: none;
font-weight: 600;
}
#img1
{
background-image: url("https://s3.amazonaws.com/coursera_assets/browse/domains/business.png");
padding-top: 26px;
}
#img2
{
background-image: url("https://s3.amazonaws.com/coursera_assets/browse/domains/computer_science.png");
padding-top: 26px;
}
#img3
{
background-image: url("https://s3.amazonaws.com/coursera_assets/browse/domains/data_science.png");
padding-top: 26px;
}
#img4
{
background-image: url("https://s3.amazonaws.com/coursera_assets/browse/domains/health.png");
padding-top: 26px;
}
#img5
{
background-color: #382d8b;
padding-top: 26px;
}
#img6
{
background-image: url("https://s3.amazonaws.com/coursera_assets/browse/domains/business.png");
padding-top: 26px;
}
#img7
{
background-image: url("https://s3.amazonaws.com/coursera_assets/browse/domains/data_science.png");
padding-top: 26px;
}
#img8
{
background-image: url("https://s3.amazonaws.com/coursera_assets/browse/domains/social_sciences.png");
padding-top: 26px;
}
#learn
{
width:98%;
display: grid;
grid-template-columns: repeat(2,1fr);
grid-template-rows: 392px;
/* border:1px solid black; */
gap:15px;
margin: auto;
margin-left: 15px;
}
#learn,img{
height: 95% ;
width: 95%;
}
#bvw{
width: 1128px;
height: 648px;
border: 1px solid black;
background-image: url("components/With_Overlay.png");
background-size: cover;
margin: auto;
color: white;
}
#lower{
justify-content: center;
text-align: center;
}
.fa-solid{
color: white;
margin: auto;
}
#bvw>h2{
margin-top: 250px;
}
#videoGrid{
display: grid;
grid-template-columns: repeat(6,1fr);
box-shadow: #1f1f1f;
width: 1128px;
margin: auto;
margin-top: 25px;
justify-content: space-between;
}
#videoGrid>div{
height: 400px;
width: 150px;
}
#videoGrid>div img{
height: 150px;
}
#container{
display:grid;
grid-template-columns: repeat(4,278px);
grid-template-rows: repeat(2,278px);
width: 1128px;
gap: 5px;
margin: auto;
}
#container>div{
background-color: #E7FDFF;;
}
#container img{
width: 100%;
height: 190px;
}
.black{
background-color: #1f1f1f;
color: white;
height: 90px;
margin-top :-20px; ;
}
.cyan{
margin-top: 100px;
}
#lowerGrid{
display: grid;
grid-template-columns:repeat(3,384px) ;
grid-template-rows: repeat(2,172px);
width: 1128px;
margin: auto;
}
#lowerGrid>div{
display: flex;
font-size: 14px;
}
.round{
width: 108px;
height: 108px;
border-radius: 108px;
overflow: hidden;
margin-left: 10px;
margin-right: 20px;
}
.round~div{
width: 180px;
}
.round>img{
width: 130px;
height: 130px;
margin-left: -10px;
}
#led{
margin-top: 150px;
margin-bottom: 50px;
font-weight:100;
}
#data123
{
height:auto ;
width:348px;
border:none;
overflow-y: scroll;
cursor: pointer;
text-align: justify;
margin-left: 12px;
max-height: 200px;
margin-top: 15px;
}
#input123
{
width:350px;
height: 50px;
margin: 10.5px 0px 0px 10px;
}
</style>
<script src="https://kit.fontawesome.com/06d9f213d3.js" crossorigin="anonymous"></script>
<script src="scripts\gid.js"></script>
</head>
<body>
<!-- //////////////////////////////// navbar ///////////////////// -->
<div id="navbar">
<div class="navpart1">
<div>
<a href="./mhmepg.html"><img id="courseImg12" src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjIuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHZpZXdCb3g9IjAgMCAxMTU1IDE2NCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLW1pdGVybGltaXQ9IjIiPjxwYXRoIGQ9Ik0xNTkuNzUgODEuNTRjMC00NC40OSAzNi42My04MC40NyA4Mi40My04MC40NyA0Ni4xMiAwIDgyLjc2IDM2IDgyLjc2IDgwLjQ3IDAgNDQuMTYtMzYuNjQgODAuOC04Mi43NiA4MC44LTQ1LjggMC04Mi40My0zNi42OC04Mi40My04MC44em0xMjUuNjEgMGMwLTIyLjI0LTE5LjMtNDEuODctNDMuMTgtNDEuODctMjMuNTUgMC00Mi44NSAxOS42My00Mi44NSA0MS44NyAwIDIyLjU3IDE5LjMgNDIuMiA0Mi44NSA0Mi4yIDIzLjkyIDAgNDMuMTgtMTkuNjMgNDMuMTgtNDIuMnptNzA1LjYzIDEuMzFjMC00OC43NCAzOS41OC04MS43OCA3NS41Ny04MS43OCAyNC41MyAwIDM4LjYgNy41MiA0OC4wOCAyMS45MmwzLjc3LTE5aDM2Ljc5djE1NS40aC0zNi43OWwtNC43NS0xNmMtMTAuNzkgMTEuNzgtMjQuMjEgMTktNDcuMSAxOS0zNS4zMy0uMDUtNzUuNTctMzEuMTMtNzUuNTctNzkuNTR6bTEyNS42MS0uMzNjLS4wOS0yMy41MjctMTkuNDctNDIuODM1LTQzLTQyLjgzNS0yMy41OSAwLTQzIDE5LjQxMS00MyA0M3YuMTY1YzAgMjEuNTkgMTkuMyA0MC44OSA0Mi44NiA0MC44OSAyMy44NSAwIDQzLjE0LTE5LjMgNDMuMTQtNDEuMjJ6TTk0NS43OCAyMlY0aC00MC4yM3YxNTUuMzloNDAuMjNWNzUuNjZjMC0yNS4xOSAxMi40NC0zOC4yNyAzNC0zOC4yNyAxLjQzIDAgMi43OS4xIDQuMTIuMjNMOTkxLjM2LjExYy0yMC45Ny4xMS0zNi4xNyA3LjMtNDUuNTggMjEuODl6bS00MDQuMjcuMDF2LTE4bC00MC4yMy4wOS4zNCAxNTUuMzcgNDAuMjMtLjA5LS4yMi04My43MmMtLjA2LTI1LjE4IDEyLjM1LTM4LjI5IDMzLjkzLTM4LjM0IDEuMzc2LjAwNCAyLjc1Mi4wODEgNC4xMi4yM0w1ODcuMSAwYy0yMSAuMTctMzYuMjIgNy4zOS00NS41OSAyMi4wMXpNMzM4Ljg4IDk5LjJWNC4wMWg0MC4yMlY5NC4zYzAgMTkuOTUgMTEuMTIgMzEuNzMgMzAuNDIgMzEuNzMgMjEuNTkgMCAzNC0xMy4wOSAzNC0zOC4yOFY0LjAxaDQwLjI0djE1NS4zOGgtNDAuMjF2LTE4Yy05LjQ4IDE0LjcyLTI0Ljg2IDIxLjkyLTQ2LjEyIDIxLjkyLTM1Ljk4LjAxLTU4LjU1LTI2LjE2LTU4LjU1LTY0LjExem0zOTEuNzQtMTcuNDhjLjA5LTQzLjUxIDMxLjIzLTgwLjc0IDgwLjYyLTgwLjY1IDQ1LjguMDkgNzguMTEgMzYuNzggNzggODAgLjAxIDQuMjczLS4zMyA4LjU0LTEgMTIuNzZsLTExOC40MS0uMjJjNC41NCAxOC42NSAxOS44OSAzMi4wOSA0My4xMiAzMi4xNCAxNC4wNiAwIDI5LjEyLTUuMTggMzguMy0xNi45NGwyNy40NCAyMmMtMTQuMTEgMTkuOTMtMzkgMzEuNjYtNjUuNDggMzEuNjEtNDYuNzUtLjE2LTgyLjY3LTM1LjIzLTgyLjU5LTgwLjd6bTExOC4xMi0xNi4xNGMtMi4yNi0xNS43LTE4LjU5LTI3Ljg0LTM3Ljg5LTI3Ljg3LTE4LjY1IDAtMzMuNzEgMTEuMDYtMzkuNjMgMjcuNzNsNzcuNTIuMTR6bS0yNjEuNCA1OS45NGwzNS43Ni0xOC43MmM1LjkxIDEyLjgxIDE3LjczIDIwLjM2IDM0LjQ4IDIwLjM2IDE1LjQzIDAgMjEuMzQtNC45MiAyMS4zNC0xMS44MiAwLTI1LTg0LjcxLTkuODUtODQuNzEtNjcgMC0zMS41MiAyNy41OC00OC4yNiA2MS43Mi00OC4yNiAyNS45NCAwIDQ4LjkyIDExLjQ5IDYxLjQgMzIuODNsLTM1LjQ0IDE4Ljc1Yy01LjI1LTEwLjUxLTE1LjEtMTYuNDItMjcuNTgtMTYuNDItMTIuMTQgMC0xOC4wNiA0LjI3LTE4LjA2IDExLjQ5IDAgMjQuMyA4NC43MSA4Ljg3IDg0LjcxIDY3IDAgMzAuMjEtMjQuNjIgNDguNTktNjQuMzUgNDguNTktMzMuODItLjAzLTU3LjQ2LTExLjE5LTY5LjI3LTM2Ljh6TTAgODEuNTRDMCAzNi43MyAzNi42My43NCA4Mi40My43NGMyNy45NDctLjE5NiA1NC4xODIgMTMuNzM3IDY5LjY3IDM3bC0zNC4zNCAxOS45MmE0Mi45NzIgNDIuOTcyIDAgMDAtMzUuMzMtMTguMzJjLTIzLjU1IDAtNDIuODUgMTkuNjMtNDIuODUgNDIuMiAwIDIyLjU3IDE5LjMgNDIuMiA0Mi44NSA0Mi4yYTQyLjUwMiA0Mi41MDIgMCAwMDM2LjMxLTIwbDM0IDIwLjI4Yy0xNS4zMDcgMjMuOTU1LTQxLjkwMiAzOC40MzEtNzAuMzMgMzguMjhDMzYuNjMgMTYyLjM0IDAgMTI1LjY2IDAgODEuNTR6IiBmaWxsPSIjMDA1NkQyIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48L3N2Zz4=" alt="coursera"></a>
</div>
<div class="dropdown">
<button class="dropbtn">Explore
<i class="fa fa-caret-down"></i>
</button>
<!-- <div class="dropdown-content">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div> -->
</div>
<div>
<input type="text" oninput="debounce(main,100)" id="input123">
<div id="data123"></div>
</div>
<div>
<button class="search"><i class="fa-solid fa-magnifying-glass"></i></button>
</div>
</div>
<div class="navpart2">
<h5><a href="./onlinedegrees1.html" style="color:black; text-decoration:none">Online Degrees</a> </h5>
<h5> <a href="./findyourcareer.html" style="color:black; text-decoration:none">Find your New Career</a> </h5>
<h5> <a href="./ForBusinessEnterprise.html" style="color:black; text-decoration:none"> For Enterprise</a></h5>
<h5>For universities</h5>
<div class="bellicon">
<i class="fa-solid fa-bell"></i>
</div>
</div>
<div class="navpart3">
<div class="loginicon">
<i class="fa-solid fa-user-large"></i>
</div>
<div> <h4 id="username"></h4></div>
</div>
</div>
<!-- //////////////////////////////// navbar end ///////////////////// -->
<!-- ////////////////////// Heading Div /////////////////// -->
<div id="headerBox">
<div id="heading"><h1>Find the right online degree program to elevate your career to the next level </h1></div>
<div id="inputDiv">
<p id="paraTag">I HAVE A</p>
<select id="qualification">
<option value="">Less than high school diploma (or equivalent)</option>
<option value="">High school diploma (or equivalent)</option>
<option value="">Some college but no degree</option>
<option value="">Associate Degree (e.g., AA, AS)</option>
<option value="">Bachelor's degree (e.g., BA, AB, BS)</option>
<option value="">Master's degree (e.g., MA, MS, MEng, MEd, MSW, MBA)</option>
<option value="">Professional school degree (e.g., MD, DDS, DVM, LLB, JD)</option>
<option value="">Doctorate degree (e.g., PhD, EdD)</option>
</select>
<p id="paraTag">I WANT A</p>
<select id="degree">
<option value="Master's Degree">Master's Degree</option>
<option value="Bachelor's Degree">Bachelor's Degree</option>
</select>
<p id="paraTag">IN</p>
<select name="" id="">
<option value="">Arts and Humanities</option>
<option value="">Business</option>
<option value="">Computer Science</option>
<option value="">information-technology</option>
<option value="">Math and Logic</option>
</select>
<button id="inputBtn" onclick="degreeFilter()" style="background-color:#0056D2;border: #0056D2; color:white; font-weight: 600;">See programs</button><br>
<button id="inputBtn" style="background-color:white ;border:1px solid #0056D2;color:#0056D2; font-weight: 600;">Email me info</button>
</div>
</div>
<!-- //////////////// SHOW SEE PROGRAMS RESULT ///////////////// -->
<div id="showData"></div>
<!-- /////////////// FIND The Right Online Degree ///////////////// -->
<center><h2>Find the right online degree for you</h2></center>
<div id="rightDegree">
<div>
<h3>Bachelor's Degrees</h3>
<p>Receiving a bachelor's degree can open a path to a career in many fields. You can find affordable online bachelor's degrees from top universities offered on Coursera.</p>
<a href="" id="anchorTag" >View all Bachelor's degree programs</a>
</div>
<div>
<h3>Postgraduate Studies</h3>
<p>In addition to degrees, post graduate study programs may offer a chance to complete graduate level learning without committing to a full degree program.</p>
<a href="" id="anchorTag">View all postgraduate programs</a>
</div>
<div>
<h3>Master's Degrees</h3>
<p>Receiving a master's degree can open a path to a career in many fields. Whether you are looking to advance your career or change careers and work in a new field, you can find affordable online master's degrees from top universities offered on Coursera.</p>
<a href="" id="anchorTag">View all Master's degree programs</a>
</div>
</div>
<!-- ///////// Degree's from leading universities ///////////-->
<h3 id="degree123" style="margin-left: 20px;">Degree's from leading universities</h3><br>
<h4 id="qwe" style="padding-bottom: 30px;margin-left: 20px" > Showing total results Degree </h4>
<div id="leadingUniversity">
<!-- <div id="show"><P> Showing 4 total results for Master's Degree in Business.</P></div> -->
<div>
<div>
<img src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://coursera-university-assets.s3.amazonaws.com/70/de505d47be7d3a063b51b6f856a6e2/New-Block-M-Stacked-Blue-295C_600x600.png?auto=format%2Ccompress&dpr=1" alt="University of Michigan ">
</div>
<div id="plans">
<p style="font-weight:600">Master of Applied Data Science</p>
<p>#1 Public Research University in the U.S. (QS World Rankings, 2022)</p>
<a href="">Go to degree</a>
</div>
</div>
<div>
<div>
<img src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/http://coursera-university-assets.s3.amazonaws.com/1a/6984a02c5a45e0bc8c40b02a42bbdb/UNT-logo1.png?auto=format%2Ccompress&dpr=1" alt="University of North Texas">
</div>
<div id="plans">
<p style="font-weight:600">Bachelor of Applied Arts and Sciences</p>
<p>#23 Best Online Learning Schools (Newsweek, 2022)</p>
<a href="">Go to degree</a>
</div>
</div>
<div>
<div>
<img src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/http://coursera-university-assets.s3.amazonaws.com/fa/0b3fb0640711e8b77e73d0990f7c82/180.png?auto=format%2Ccompress&dpr=1" alt="Fundação Instituto de Administração">
</div>
<div id="plans">
<p style="font-weight:600">Master of Business Administration</p>
<p>#2 Executive MBAs in Latin America (QS Rankings, 2020)</p>
<a href="">Go to degree</a>
</div>
</div>
<div>
<div>
<img src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/http://coursera-university-assets.s3.amazonaws.com/3a/4462907b1511e8a3472b753a4c35c3/HEC_logo.png?auto=format%2Ccompress&dpr=1" alt="HEC Paris">
</div>
<div id="plans">
<p style="font-weight:600">MSc in Innovation and Entrepreneurship</p>
<p>#1 Business School in Europe (Financial Times, 2021)</p>
<a href="">Go to degree</a>
</div>
</div>
<div>
<div>
<img src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/http://coursera-university-assets.s3.amazonaws.com/d8/42cdc0ab2011e8b910bdf80bed9f6c/CenterILblock-ISQUAREOrangeBackgrnd.png?auto=format%2Ccompress&dpr=1" alt="University of Illinois at Urbana-Champaign">
</div>
<div id="plans">
<p style="font-weight:600">Master of Business Administration (iMBA)</p>
<p>#1 in Biggest Business School Innovations of the Decade (Poets&Quants, 2020)</p>
<a href="">Go to degree</a>
</div>
</div>
<div>
<div>
<img src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://coursera-university-assets.s3.amazonaws.com/bb/16e85962a963ab3546196705d25865/CUBoulder_360x360.png?auto=format%2Ccompress&dpr=1" alt="University of Colorado Boulder">
</div>
<div id="plans">
<p style="font-weight:600">Master of Science in Data Science</p>
<p>#38 University in the World (Academic Ranking of World Universities, 2019)</p>
<a href="">Go to degree</a>
</div>
</div>
</div>
<!-- ////////// EXPLORE MORE DEGREES BY CATEGORIES ////////// -->
<center><h3>Explore more degrees by category</h3></center>
<div id="explore">
<div id="img1" > <a href="" >Online MBA and Business Degrees</a> </div>
<div id="img2" > <a href="" >Computer Science and Engineering Degrees</a> </div>
<div id="img3" > <a href="" >Data Science Degrees</a> </div>
<div id="img4" > <a href="" >Public Health Degrees</a> </div>
<div> 15 degree programs available </div>
<div> 7 degree programs available </div>
<div> 7 degree programs available </div>
<div> 4 degree programs available </div>
<div id="img5" > <a href="" >Top European Universities</a> </div>
<div id="img6" > <a href="" >Management Degrees</a> </div>
<div id="img7" > <a href="" >Data Analytics Degrees</a> </div>
<div id="img8" > <a href="" >Social Sciences Degrees</a> </div>
<div> 8 degree programs available </div>
<div> 7 degree programs available </div>
<div> 4 degree programs available </div>
<div> 2 degree programs available </div>
</div>
<!-- ///////////// Learn more about online degrees on Coursera ////////////// -->
<center> <h2>Learn more about online degrees on Coursera</h2></center>
<div id="learn">
<div>
<h3 style="color:#757575">TOP QUALITY LEARNING</h3>
<p><strong style="font-size:30px ; font-family: OpenSans,Arial,sans-serif; color: #373A3C;" >We partner with leading universities to <br> deliver the world's best online degree <br> programs.</strong><br><br>
You don't need to quit your job or move to a new city to earn a top university degree. Learn from the same professors and graduate with a high-value credential from the same university. Choose from a wide variety of online Master’s and Bachelor’s degrees in some of today’s most in-demand fields.</p>
</div>
<div>
<img src="https://images.ctfassets.net/wp1lcwdav1p1/xzj8wZqOFaOy8KmUeiy4O/96e63f44d9ad9ec881ba8e7637d514c0/top-quality_3x__2_.png" alt="">
</div>
</div><br>
<!-- //////////////////////////////////// -->
<div id="learn">
<div>
<img src="https://images.ctfassets.net/wp1lcwdav1p1/41K1vnQNegmcmeCSSgQUwi/750ff01e5cd024ed948a74efc6d59b51/Same_diploma_2x.png" alt="">
</div>
<div>
<h3 style="color:#757575">BREAKTHROUGH PRICING</h3>
<p><strong style="font-size:30px ; font-family: OpenSans,Arial,sans-serif; color: #373A3C;" >Earn a high-stature degree for much less than similar on-campus programs.</strong><br><br>
We partner with top universities to create affordable learning programs that make degrees more accessible for everyone. With tuition well below most on-campus degree programs, online degrees on Coursera are designed to allow students to invest in their education and increase their earning potential post-graduation. Financial aid is available for qualified students.</p>
</div>
</div><br>
<!-- //////////////////////////////////////////////////////////////////////////// -->
<div id="learn">
<div>
<h3 style="color:#757575">MODULAR AND STACKABLE</h3>
<p><strong style="font-size:30px ; font-family: OpenSans,Arial,sans-serif; color: #373A3C;" >Try your first course risk-free & start working towards your degree today.</strong><br><br>
Courses, Specializations, or MasterTrack Certificates that are part of degrees allow you to start learning right away, so you can make progress on your own schedule. If you are admitted to the full program, your completed courses count towards your degree learning.</p>
</div>
<div>
<img src="https://images.ctfassets.net/wp1lcwdav1p1/7I4ow3GHAYAwiXiFKGQwnQ/ca333ef3ff01e29c7635ca10d51fdb55/new-stackable-content-graphic.png" autoplay muted>
</div>
</div>
<!-- /////////////////////////////////////////////////////////////////////////////////// -->
<div id="learn">
<div>
<video src="https://videos.ctfassets.net/wp1lcwdav1p1/FplyBr1kooQUceICMesoC/2089b35516f9a8da344b645afad84d9e/learning-experience.mp4" autoplay="" muted="" loop="" aria-hidden="true" tabindex="-1"></video> </div>
<div>
<h3 style="color:#757575">INTERACTIVE & ENGAGING</h3>
<p><strong style="font-size:30px ; font-family: OpenSans,Arial,sans-serif; color: #373A3C;" >Benefit from team-based learning and live expert instruction.</strong><br><br>
Online degrees on Coursera are powered by technology that helps you spark meaningful connections with faculty and your peers. Throughout the program, you may attend online lectures from anywhere and interact directly with professors and classmates. On every step of your learning journey, you’ll have access to a dedicated online student support team. Get help to resolve sticking points so you can master new concepts and skills.</p>
</div>
</div><br>
<!-- ///////////papil///////// -->
<br>
<div id="lower">
<h1 style="font-weight: lighter;">What students and faculty say</h1>
<br>
<div onclick="playVedio('https://youtu.be/SWCTx_pI37s')" id="bvw">
<h2>"One of the feature that worked well for me is how moduler it is ."</h2>
<h4>Dan Gartley iMBA Student</h4>
<i class="fa-solid fa-play icon-4x"></i>
</div>
<div id="videoGrid">
<div>
<div onclick="playVedio('https://youtu.be/BVPJPG4zOso')"><img src="\Courseera-clone\components\secondary2.jpg"></div>
<div><P>"Each week of every course, you will join a live global classroom. You will be involved in give-and-take discussions with faculty, not just listen to us. You will work on real-world accounting problems."</P></div>
</div>
<div>
<div onclick="playVedio('https://youtu.be/e64ZHYvWTaE')"><img src="\Courseera-clone\components\mcs-ds_video_2x.jpg"></div>
<div><p>"I feel great that I got the opportunity to work with one of the best universities on my own schedule. It will elevate my life, and my family's life overall, to help me grow my career into the latest technology trends."</p></div>
</div>
<div>
<div onclick="playVedio('https://youtu.be/-PHxMCnH1YE')"><img src="\Courseera-clone\components\HEC-video-placeholder_2x.jpg"></div>
<div><p>"In our program, we combine the expertise of teaching faculty who bring in solid ideas and frameworks with the hands-on expertise of seasoned entrepreneurs who function as mentors."</p></div>
</div>
<div>
<div onclick="playVedio('https://youtu.be/BIgZtprxuwU')"><img src="\Courseera-clone\components\Screen_Shot_2020-12-10_at_9.34.50_AM.png"></div>
<div><p>"My first week of studying was in Africa with no mobile or wifi. I was able to download all the content in advance."</p></div>
</div>
<div>
<div onclick="playVedio('https://youtu.be/eRTA-IqQi9I')"><img src="\Courseera-clone\components\Screen_Shot_1400-01-26_at_14.00.32.png"></div>
<div><P>"Today's learners need options. The future of work and the future of learning are converging."</P></div>
</div>
<div>
<div onclick="playVedio('https://youtu.be/SecvDI9MN6c')"><img src="\Courseera-clone\components\Screenshot_2019-06-26_14.56.15.jpg"></div>
<div><P>"The theoretical background that I am getting from the Illinois MCS program I am able to use a lot of those ideas on a day-to-day basis."</P></div>
</div>
</div>
<h1 style="margin-top: 100px; margin-bottom: 20px;font-weight: 100;">Join a global learning community</h1>
<div id="container">
<div><img src="components\grantm.jpg"> <div class="black"> <p>Grant M.</p> <p>University of Illinois iMBA Student</p></div> </div>
<div><img src="components\anua.jpg"> <div class="black"><p>Anu A.</p> <p>University of Illinois MCS-DS Student</p></div> </div>
<div> <div class="cyan"><p>Students represent</p> <h1>95 countries</h1></div> </div>
<div><div class="cyan"><p>1st year student retention</p> <h1>92%</h1></div> </div>
<div><div class="cyan"><p>Average age</p> <h1>35 years</h1></div> </div>
<div><div class="cyan"><p>Average work experience </p> <h1>14 years</h1></div> </div>
<div><img src="components\ashishk.jpg"><div class="black"><p>Qian Z.</p> <p>University of Illinois MCS-DS Student</p> </div> </div>
<div><img src="components\qianz.jpg"> <div class="black"> <p>Ashish K.</p> <p>University of Illinois MCS-DS Graduate</p> </div> </div>
</div>
<center id="led"><h1>Led by the same top-ranked professors who lecture on campus</h1></center>
<div id="lowerGrid">
<div>
<div class="round"><img src="components\larry-debrock.jpg"></div>
<div><p style="font-weight: bolder;">Larry DeBrock</p><p style="font-weight: lighter;">Dean Emeritus and Professor of Finance and Professor of Economics, University of Illinois, iMBA</p></div>
</div>
<div>
<div class="round"><img src="components\laurence-lehmann-ortega.jpg"></div>
<div><p style="font-weight: bolder;">Laurence Lehmann-Ortega</p><p style="font-weight: lighter;">Affiliate Professor of Management, HEC Paris, MSc in Innovation and Entrepreneurship</p></div>
</div>
<div>
<div class="round"><img src="components\robert-brunner.jpg"></div>
<div><p style="font-weight: bolder;">Robert Brunner</p><p style="font-weight: lighter;">Professor of Accountancy, University of Illinois, iMSA</p></div>
</div>
<div>
<div class="round"><img src="components\illinois_mcs_faculty_headshots-jiawei_han.jpg"></div>
<div><p style="font-weight: bolder;">Jiawei Han</p><p style="font-weight: lighter;">Michael Aiken Chair, University of Illinois, MCS/MCS-DS</p></div>
</div>
<div>
<div class="round"><img src="components\featured.jpg"></div>
<div><p style="font-weight: bolder;">Jingrui He</p><p style="font-weight: lighter;">Assistant Professor, School of Computing, Informatics, and Decision Systems Engineering, ASU, MCS</p></div>
</div>
<div>
<div class="round"><img src="components\illinois_mcs_faculty_headshots-lamikant_kale.jpg"></div>
<div><p style="font-weight: bolder;">Laxmikant V. Kale</p><p style="font-weight: lighter;">Paul and Cynthia Saylor Professor, University of Illinois, MCS</p></div>
</div>
</div>
</div>
</body>
</html>
<script>
function playVedio(url){
window.open(url);
}
</script>
<script src="./search.js"></script>