forked from udacity/course-JS-and-the-DOM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1205 lines (1086 loc) · 143 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
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!-- saved from url=(0024)https://www.udacity.com/ -->
<html class="gr__udacity_com"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="csrf-param" content="authenticity_token">
<meta name="csrf-token" content="5xky7z6n+z+8cswGLeL76UnGPNGKtOQ00jm+IK66f9FQPQkP/NhCZxXf+XGWHYU66G2UAHlj+sZFD+6c4oVD9g==">
<title>Udacity - Free Online Classes & Nanodegrees</title>
<meta name="description" content="Join Udacity to learn the latest in Deep Learning, Machine Learning, Web Development & more, with Nanodegree programs & free online courses.">
<meta name="google-site-verification" content="2EIknjtmPaA5nE7j3noLXPah_x_bM2bFEHZRdqSYYMk">
<meta name="google-site-verification" content="ELX2btu3VElBKIdvkGj5ESBnJh_Dg9PnWjuCwVkPEkA">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- <script type="text/javascript">(window.NREUM||(NREUM={})).loader_config={xpid:"XQAAV1JWGwICUlNXDwcF"};window.NREUM||(NREUM={}),__nr_require=function(t,n,e){function r(e){if(!n[e]){var o=n[e]={exports:{}};t[e][0].call(o.exports,function(n){var o=t[e][1][n];return r(o||n)},o,o.exports)}return n[e].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<e.length;o++)r(e[o]);return r}({1:[function(t,n,e){function r(t){try{s.console&&console.log(t)}catch(n){}}var o,i=t("ee"),a=t(15),s={};try{o=localStorage.getItem("__nr_flags").split(","),console&&"function"==typeof console.log&&(s.console=!0,o.indexOf("dev")!==-1&&(s.dev=!0),o.indexOf("nr_dev")!==-1&&(s.nrDev=!0))}catch(c){}s.nrDev&&i.on("internal-error",function(t){r(t.stack)}),s.dev&&i.on("fn-err",function(t,n,e){r(e.stack)}),s.dev&&(r("NR AGENT IN DEVELOPMENT MODE"),r("flags: "+a(s,function(t,n){return t}).join(", ")))},{}],2:[function(t,n,e){function r(t,n,e,r,o){try{d?d-=1:i("err",[o||new UncaughtException(t,n,e)])}catch(s){try{i("ierr",[s,c.now(),!0])}catch(u){}}return"function"==typeof f&&f.apply(this,a(arguments))}function UncaughtException(t,n,e){this.message=t||"Uncaught error with no additional information",this.sourceURL=n,this.line=e}function o(t){i("err",[t,c.now()])}var i=t("handle"),a=t(16),s=t("ee"),c=t("loader"),f=window.onerror,u=!1,d=0;c.features.err=!0,t(1),window.onerror=r;try{throw new Error}catch(l){"stack"in l&&(t(8),t(7),"addEventListener"in window&&t(5),c.xhrWrappable&&t(9),u=!0)}s.on("fn-start",function(t,n,e){u&&(d+=1)}),s.on("fn-err",function(t,n,e){u&&(this.thrown=!0,o(e))}),s.on("fn-end",function(){u&&!this.thrown&&d>0&&(d-=1)}),s.on("internal-error",function(t){i("ierr",[t,c.now(),!0])})},{}],3:[function(t,n,e){t("loader").features.ins=!0},{}],4:[function(t,n,e){function r(t){}if(window.performance&&window.performance.timing&&window.performance.getEntriesByType){var o=t("ee"),i=t("handle"),a=t(8),s=t(7),c="learResourceTimings",f="addEventListener",u="resourcetimingbufferfull",d="bstResource",l="resource",p="-start",h="-end",m="fn"+p,w="fn"+h,v="bstTimer",y="pushState",g=t("loader");g.features.stn=!0,t(6);var b=NREUM.o.EV;o.on(m,function(t,n){var e=t[0];e instanceof b&&(this.bstStart=g.now())}),o.on(w,function(t,n){var e=t[0];e instanceof b&&i("bst",[e,n,this.bstStart,g.now()])}),a.on(m,function(t,n,e){this.bstStart=g.now(),this.bstType=e}),a.on(w,function(t,n){i(v,[n,this.bstStart,g.now(),this.bstType])}),s.on(m,function(){this.bstStart=g.now()}),s.on(w,function(t,n){i(v,[n,this.bstStart,g.now(),"requestAnimationFrame"])}),o.on(y+p,function(t){this.time=g.now(),this.startPath=location.pathname+location.hash}),o.on(y+h,function(t){i("bstHist",[location.pathname+location.hash,this.startPath,this.time])}),f in window.performance&&(window.performance["c"+c]?window.performance[f](u,function(t){i(d,[window.performance.getEntriesByType(l)]),window.performance["c"+c]()},!1):window.performance[f]("webkit"+u,function(t){i(d,[window.performance.getEntriesByType(l)]),window.performance["webkitC"+c]()},!1)),document[f]("scroll",r,{passive:!0}),document[f]("keypress",r,!1),document[f]("click",r,!1)}},{}],5:[function(t,n,e){function r(t){for(var n=t;n&&!n.hasOwnProperty(u);)n=Object.getPrototypeOf(n);n&&o(n)}function o(t){s.inPlace(t,[u,d],"-",i)}function i(t,n){return t[1]}var a=t("ee").get("events"),s=t(18)(a,!0),c=t("gos"),f=XMLHttpRequest,u="addEventListener",d="removeEventListener";n.exports=a,"getPrototypeOf"in Object?(r(document),r(window),r(f.prototype)):f.prototype.hasOwnProperty(u)&&(o(window),o(f.prototype)),a.on(u+"-start",function(t,n){var e=t[1],r=c(e,"nr@wrapped",function(){function t(){if("function"==typeof e.handleEvent)return e.handleEvent.apply(e,arguments)}var n={object:t,"function":e}[typeof e];return n?s(n,"fn-",null,n.name||"anonymous"):e});this.wrapped=t[1]=r}),a.on(d+"-start",function(t){t[1]=this.wrapped||t[1]})},{}],6:[function(t,n,e){var r=t("ee").get("history"),o=t(18)(r);n.exports=r,o.inPlace(window.history,["pushState","replaceState"],"-")},{}],7:[function(t,n,e){var r=t("ee").get("raf"),o=t(18)(r),i="equestAnimationFrame";n.exports=r,o.inPlace(window,["r"+i,"mozR"+i,"webkitR"+i,"msR"+i],"raf-"),r.on("raf-start",function(t){t[0]=o(t[0],"fn-")})},{}],8:[function(t,n,e){function r(t,n,e){t[0]=a(t[0],"fn-",null,e)}function o(t,n,e){this.method=e,this.timerDuration=isNaN(t[1])?0:+t[1],t[0]=a(t[0],"fn-",this,e)}var i=t("ee").get("timer"),a=t(18)(i),s="setTimeout",c="setInterval",f="clearTimeout",u="-start",d="-";n.exports=i,a.inPlace(window,[s,"setImmediate"],s+d),a.inPlace(window,[c],c+d),a.inPlace(window,[f,"clearImmediate"],f+d),i.on(c+u,r),i.on(s+u,o)},{}],9:[function(t,n,e){function r(t,n){d.inPlace(n,["onreadystatechange"],"fn-",s)}function o(){var t=this,n=u.context(t);t.readyState>3&&!n.resolved&&(n.resolved=!0,u.emit("xhr-resolved",[],t)),d.inPlace(t,y,"fn-",s)}function i(t){g.push(t),h&&(x?x.then(a):w?w(a):(E=-E,O.data=E))}function a(){for(var t=0;t<g.length;t++)r([],g[t]);g.length&&(g=[])}function s(t,n){return n}function c(t,n){for(var e in t)n[e]=t[e];return n}t(5);var f=t("ee"),u=f.get("xhr"),d=t(18)(u),l=NREUM.o,p=l.XHR,h=l.MO,m=l.PR,w=l.SI,v="readystatechange",y=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"],g=[];n.exports=u;var b=window.XMLHttpRequest=function(t){var n=new p(t);try{u.emit("new-xhr",[n],n),n.addEventListener(v,o,!1)}catch(e){try{u.emit("internal-error",[e])}catch(r){}}return n};if(c(p,b),b.prototype=p.prototype,d.inPlace(b.prototype,["open","send"],"-xhr-",s),u.on("send-xhr-start",function(t,n){r(t,n),i(n)}),u.on("open-xhr-start",r),h){var x=m&&m.resolve();if(!w&&!m){var E=1,O=document.createTextNode(E);new h(a).observe(O,{characterData:!0})}}else f.on("fn-end",function(t){t[0]&&t[0].type===v||a()})},{}],10:[function(t,n,e){function r(t){var n=this.params,e=this.metrics;if(!this.ended){this.ended=!0;for(var r=0;r<d;r++)t.removeEventListener(u[r],this.listener,!1);if(!n.aborted){if(e.duration=a.now()-this.startTime,4===t.readyState){n.status=t.status;var i=o(t,this.lastSize);if(i&&(e.rxSize=i),this.sameOrigin){var c=t.getResponseHeader("X-NewRelic-App-Data");c&&(n.cat=c.split(", ").pop())}}else n.status=0;e.cbTime=this.cbTime,f.emit("xhr-done",[t],t),s("xhr",[n,e,this.startTime])}}}function o(t,n){var e=t.responseType;if("json"===e&&null!==n)return n;var r="arraybuffer"===e||"blob"===e||"json"===e?t.response:t.responseText;return h(r)}function i(t,n){var e=c(n),r=t.params;r.host=e.hostname+":"+e.port,r.pathname=e.pathname,t.sameOrigin=e.sameOrigin}var a=t("loader");if(a.xhrWrappable){var s=t("handle"),c=t(11),f=t("ee"),u=["load","error","abort","timeout"],d=u.length,l=t("id"),p=t(14),h=t(13),m=window.XMLHttpRequest;a.features.xhr=!0,t(9),f.on("new-xhr",function(t){var n=this;n.totalCbs=0,n.called=0,n.cbTime=0,n.end=r,n.ended=!1,n.xhrGuids={},n.lastSize=null,p&&(p>34||p<10)||window.opera||t.addEventListener("progress",function(t){n.lastSize=t.loaded},!1)}),f.on("open-xhr-start",function(t){this.params={method:t[0]},i(this,t[1]),this.metrics={}}),f.on("open-xhr-end",function(t,n){"loader_config"in NREUM&&"xpid"in NREUM.loader_config&&this.sameOrigin&&n.setRequestHeader("X-NewRelic-ID",NREUM.loader_config.xpid)}),f.on("send-xhr-start",function(t,n){var e=this.metrics,r=t[0],o=this;if(e&&r){var i=h(r);i&&(e.txSize=i)}this.startTime=a.now(),this.listener=function(t){try{"abort"===t.type&&(o.params.aborted=!0),("load"!==t.type||o.called===o.totalCbs&&(o.onloadCalled||"function"!=typeof n.onload))&&o.end(n)}catch(e){try{f.emit("internal-error",[e])}catch(r){}}};for(var s=0;s<d;s++)n.addEventListener(u[s],this.listener,!1)}),f.on("xhr-cb-time",function(t,n,e){this.cbTime+=t,n?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof e.onload||this.end(e)}),f.on("xhr-load-added",function(t,n){var e=""+l(t)+!!n;this.xhrGuids&&!this.xhrGuids[e]&&(this.xhrGuids[e]=!0,this.totalCbs+=1)}),f.on("xhr-load-removed",function(t,n){var e=""+l(t)+!!n;this.xhrGuids&&this.xhrGuids[e]&&(delete this.xhrGuids[e],this.totalCbs-=1)}),f.on("addEventListener-end",function(t,n){n instanceof m&&"load"===t[0]&&f.emit("xhr-load-added",[t[1],t[2]],n)}),f.on("removeEventListener-end",function(t,n){n instanceof m&&"load"===t[0]&&f.emit("xhr-load-removed",[t[1],t[2]],n)}),f.on("fn-start",function(t,n,e){n instanceof m&&("onload"===e&&(this.onload=!0),("load"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=a.now()))}),f.on("fn-end",function(t,n){this.xhrCbStart&&f.emit("xhr-cb-time",[a.now()-this.xhrCbStart,this.onload,n],n)})}},{}],11:[function(t,n,e){n.exports=function(t){var n=document.createElement("a"),e=window.location,r={};n.href=t,r.port=n.port;var o=n.href.split("://");!r.port&&o[1]&&(r.port=o[1].split("/")[0].split("@").pop().split(":")[1]),r.port&&"0"!==r.port||(r.port="https"===o[0]?"443":"80"),r.hostname=n.hostname||e.hostname,r.pathname=n.pathname,r.protocol=o[0],"/"!==r.pathname.charAt(0)&&(r.pathname="/"+r.pathname);var i=!n.protocol||":"===n.protocol||n.protocol===e.protocol,a=n.hostname===document.domain&&n.port===e.port;return r.sameOrigin=i&&(!n.hostname||a),r}},{}],12:[function(t,n,e){function r(){}function o(t,n,e){return function(){return i(t,[f.now()].concat(s(arguments)),n?null:this,e),n?void 0:this}}var i=t("handle"),a=t(15),s=t(16),c=t("ee").get("tracer"),f=t("loader"),u=NREUM;"undefined"==typeof window.newrelic&&(newrelic=u);var d=["setPageViewName","setCustomAttribute","setErrorHandler","finished","addToTrace","inlineHit","addRelease"],l="api-",p=l+"ixn-";a(d,function(t,n){u[n]=o(l+n,!0,"api")}),u.addPageAction=o(l+"addPageAction",!0),u.setCurrentRouteName=o(l+"routeName",!0),n.exports=newrelic,u.interaction=function(){return(new r).get()};var h=r.prototype={createTracer:function(t,n){var e={},r=this,o="function"==typeof n;return i(p+"tracer",[f.now(),t,e],r),function(){if(c.emit((o?"":"no-")+"fn-start",[f.now(),r,o],e),o)try{return n.apply(this,arguments)}finally{c.emit("fn-end",[f.now()],e)}}}};a("setName,setAttribute,save,ignore,onEnd,getContext,end,get".split(","),function(t,n){h[n]=o(p+n)}),newrelic.noticeError=function(t){"string"==typeof t&&(t=new Error(t)),i("err",[t,f.now()])}},{}],13:[function(t,n,e){n.exports=function(t){if("string"==typeof t&&t.length)return t.length;if("object"==typeof t){if("undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if("undefined"!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if(!("undefined"!=typeof FormData&&t instanceof FormData))try{return JSON.stringify(t).length}catch(n){return}}}},{}],14:[function(t,n,e){var r=0,o=navigator.userAgent.match(/Firefox[\/\s](\d+\.\d+)/);o&&(r=+o[1]),n.exports=r},{}],15:[function(t,n,e){function r(t,n){var e=[],r="",i=0;for(r in t)o.call(t,r)&&(e[i]=n(r,t[r]),i+=1);return e}var o=Object.prototype.hasOwnProperty;n.exports=r},{}],16:[function(t,n,e){function r(t,n,e){n||(n=0),"undefined"==typeof e&&(e=t?t.length:0);for(var r=-1,o=e-n||0,i=Array(o<0?0:o);++r<o;)i[r]=t[n+r];return i}n.exports=r},{}],17:[function(t,n,e){n.exports={exists:"undefined"!=typeof window.performance&&window.performance.timing&&"undefined"!=typeof window.performance.timing.navigationStart}},{}],18:[function(t,n,e){function r(t){return!(t&&t instanceof Function&&t.apply&&!t[a])}var o=t("ee"),i=t(16),a="nr@original",s=Object.prototype.hasOwnProperty,c=!1;n.exports=function(t,n){function e(t,n,e,o){function nrWrapper(){var r,a,s,c;try{a=this,r=i(arguments),s="function"==typeof e?e(r,a):e||{}}catch(f){l([f,"",[r,a,o],s])}u(n+"start",[r,a,o],s);try{return c=t.apply(a,r)}catch(d){throw u(n+"err",[r,a,d],s),d}finally{u(n+"end",[r,a,c],s)}}return r(t)?t:(n||(n=""),nrWrapper[a]=t,d(t,nrWrapper),nrWrapper)}function f(t,n,o,i){o||(o="");var a,s,c,f="-"===o.charAt(0);for(c=0;c<n.length;c++)s=n[c],a=t[s],r(a)||(t[s]=e(a,f?s+o:o,i,s))}function u(e,r,o){if(!c||n){var i=c;c=!0;try{t.emit(e,r,o,n)}catch(a){l([a,e,r,o])}c=i}}function d(t,n){if(Object.defineProperty&&Object.keys)try{var e=Object.keys(t);return e.forEach(function(e){Object.defineProperty(n,e,{get:function(){return t[e]},set:function(n){return t[e]=n,n}})}),n}catch(r){l([r])}for(var o in t)s.call(t,o)&&(n[o]=t[o]);return n}function l(n){try{t.emit("internal-error",n)}catch(e){}}return t||(t=o),e.inPlace=f,e.flag=a,e}},{}],ee:[function(t,n,e){function r(){}function o(t){function n(t){return t&&t instanceof r?t:t?c(t,s,i):i()}function e(e,r,o,i){if(!l.aborted||i){t&&t(e,r,o);for(var a=n(o),s=h(e),c=s.length,f=0;f<c;f++)s[f].apply(a,r);var d=u[y[e]];return d&&d.push([g,e,r,a]),a}}function p(t,n){v[t]=h(t).concat(n)}function h(t){return v[t]||[]}function m(t){return d[t]=d[t]||o(e)}function w(t,n){f(t,function(t,e){n=n||"feature",y[e]=n,n in u||(u[n]=[])})}var v={},y={},g={on:p,emit:e,get:m,listeners:h,context:n,buffer:w,abort:a,aborted:!1};return g}function i(){return new r}function a(){(u.api||u.feature)&&(l.aborted=!0,u=l.backlog={})}var s="nr@context",c=t("gos"),f=t(15),u={},d={},l=n.exports=o();l.backlog=u},{}],gos:[function(t,n,e){function r(t,n,e){if(o.call(t,n))return t[n];var r=e();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,n,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return t[n]=r,r}var o=Object.prototype.hasOwnProperty;n.exports=r},{}],handle:[function(t,n,e){function r(t,n,e,r){o.buffer([t],r),o.emit(t,n,e)}var o=t("ee").get("handle");n.exports=r,r.ee=o},{}],id:[function(t,n,e){function r(t){var n=typeof t;return!t||"object"!==n&&"function"!==n?-1:t===window?0:a(t,i,function(){return o++})}var o=1,i="nr@id",a=t("gos");n.exports=r},{}],loader:[function(t,n,e){function r(){if(!x++){var t=b.info=NREUM.info,n=l.getElementsByTagName("script")[0];if(setTimeout(u.abort,3e4),!(t&&t.licenseKey&&t.applicationID&&n))return u.abort();f(y,function(n,e){t[n]||(t[n]=e)}),c("mark",["onload",a()+b.offset],null,"api");var e=l.createElement("script");e.src="https://"+t.agent,n.parentNode.insertBefore(e,n)}}function o(){"complete"===l.readyState&&i()}function i(){c("mark",["domContent",a()+b.offset],null,"api")}function a(){return E.exists&&performance.now?Math.round(performance.now()):(s=Math.max((new Date).getTime(),s))-b.offset}var s=(new Date).getTime(),c=t("handle"),f=t(15),u=t("ee"),d=window,l=d.document,p="addEventListener",h="attachEvent",m=d.XMLHttpRequest,w=m&&m.prototype;NREUM.o={ST:setTimeout,SI:d.setImmediate,CT:clearTimeout,XHR:m,REQ:d.Request,EV:d.Event,PR:d.Promise,MO:d.MutationObserver};var v=""+location,y={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",agent:"js-agent.newrelic.com/nr-1059.min.js"},g=m&&w&&w[p]&&!/CriOS/.test(navigator.userAgent),b=n.exports={offset:s,now:a,origin:v,features:{},xhrWrappable:g};t(12),l[p]?(l[p]("DOMContentLoaded",i,!1),d[p]("load",r,!1)):(l[h]("onreadystatechange",o),d[h]("onload",r)),c("mark",["firstbyte",s],null,"api");var x=0,E=t(17)},{}]},{},["loader",2,10,4,3]);</script> -->
<meta http-equiv="X-UA-Compatible" content="requiresActiveX=true">
<meta name="application-name" content="Udacity">
<meta name="msapplication-TileColor" content="#FFFFFF">
<meta name="msapplication-TileImage" content="site-files/assets/udacity_share-317a7f82552763598a5c91e1550b7cd83663ce02d6d475d703e25a873cd3b574.png">
<meta name="msvalidate.01" content="4ADB80ADF9A5138C8BE3B23EE428B306">
<meta name="theme-color" content="#294860">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="site-files/assets/favicon-3867f43151ecbff486335ae6a96d17d91d6169d20888131b4681d15b65e1425b.ico">
<link rel="icon" sizes="any" mask="" href="site-files/assets/udacity_apple_icon-b2fe0e8bc834963f1cf490fdc55bc3170b37f05374e1e4b383af1d755d1893db.png">
<link rel="apple-touch-icon" href="site-files/assets/udacity_apple_icon-b2fe0e8bc834963f1cf490fdc55bc3170b37f05374e1e4b383af1d755d1893db.png">
<meta property="og:description" content="Join Udacity to learn the latest in Deep Learning, Machine Learning, Web Development & more, with Nanodegree programs & free online courses.">
<meta property="og:image:height" content="630">
<meta property="og:image:width" content="1200">
<meta property="og:image" content="site-files/assets/udacity_share-317a7f82552763598a5c91e1550b7cd83663ce02d6d475d703e25a873cd3b574.png">
<meta property="og:title" content="Udacity - Free Online Classes & Nanodegrees">
<meta property="og:type" content="website">
<meta property="og:url" content="/">
<meta name="twitter:description" content="Join Udacity to learn the latest in Deep Learning, Machine Learning, Web Development & more, with Nanodegree programs & free online courses.">
<meta name="twitter:image:src" content="site-files/assets/udacity_share-317a7f82552763598a5c91e1550b7cd83663ce02d6d475d703e25a873cd3b574.png">
<meta name="twitter:title" content="Udacity - Free Online Classes & Nanodegrees">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@udacity">
<meta name="twitter:creator" content="@udacity">
<!-- <script type="text/javascript">
!function(){var analytics=window.analytics=window.analytics||[];if(!analytics.initialize)if(analytics.invoked)window.console&&console.error&&console.error("Segment snippet included twice.");else{analytics.invoked=!0;analytics.methods=["trackSubmit","trackClick","trackLink","trackForm","pageview","identify","reset","group","track","ready","alias","page","once","off","on"];analytics.factory=function(t){return function(){var e=Array.prototype.slice.call(arguments);e.unshift(t);analytics.push(e);return analytics}};for(var t=0;t<analytics.methods.length;t++){var e=analytics.methods[t];analytics[e]=analytics.factory(e)}analytics.load=function(t){var e=document.createElement("script");e.type="text/javascript";e.async=!0;e.src=("https:"===document.location.protocol?"https://":"http://")+"cdn.segment.com/analytics.js/v1/"+t+"/analytics.min.js";var n=document.getElementsByTagName("script")[0];n.parentNode.insertBefore(e,n)};analytics.SNIPPET_VERSION="3.1.0";
analytics.load('oP3ZXzj7KM9lvyAXexoorjH0YbvawAKg');
analytics.page(
"Home",
"Home",
{},
{}
);
}}();
</script> -->
<!--Second Google analytic account setup-->
<!-- <script>
analytics.ready(function(){
ga('create', 'UA-28524234-29', 'auto', {'name': 'optimizeTracker'});
ga('optimizeTracker.require', 'GTM-MDRX326');
ga('optimizeTracker.send', 'pageview');
});
analytics.on('track', function(event, properties, options){
// custom logic based on event properties
ga('optimizeTracker.send', {
hitType: 'event',
eventCategory: properties.category || 'All',
eventAction: event,
eventLabel: properties.label || 'All',
nonInteraction: true
})
});
</script> -->
<link rel="stylesheet" media="screen" href="./site-files/application-caf474fc673fa8d860f542b966ca1080b0066549a3a0899954bbdab5f9f8ad81.css">
<script src="./site-files/jquery.min.js"></script>
<!-- <script type="application/ld+json">
{}
</script> -->
<!-- <style type="text/css">iframe#_hjRemoteVarsFrame {display: none !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important;}</style><style type="text/css">chat-view .cls-1,[data-is="chat-view"] .cls-1{opacity:0.6;} chat-view .cls-2,[data-is="chat-view"] .cls-2{fill:#424242;}</style><style type="text/css" id="qual_style-dri"></style><style type="text/css" id="qual_style-dee"></style> -->
</head>
<body class="page-homepage" data-gr-c-s-loaded="true"><header class="header header--clone header--unstick" dir="ltr">
<div class="header__navbar">
<div class="header__navbar--toggle">
<a href="https://www.udacity.com/#" class="nav-toggle">
<span class="bar bar_top"></span>
<span class="bar bar_mid"></span>
<span class="bar bar_bottom"></span>
</a>
</div>
<div class="header__navbar--logo">
<a id="ga-55771c" title="Udacity" class="logo-link" href="https://www.udacity.com/">
<div class="logo-wordmark">
<svg xmlns="http://www.w3.org/2000/svg" width="180" height="30" viewBox="0 0 180 30" alt="Udacity">
<g fill="none" fill-rule="evenodd">
<path id="wordmark" fill="#2E3D49" d="M57.6 17.239187c0 2.546698-2.085517 4.407747-4.965517 4.407747-2.88 0-4.965517-1.86105-4.965517-4.407747V7.835994H45.68276v9.501143c0 3.330298 2.88 6.170846 6.951723 6.170846 4.071724 0 6.951724-2.938498 6.951724-6.170846V7.835994H57.6v9.403193zm16.286897-9.403193h-5.36276v15.67199h5.36276c4.468965 0 7.547586-3.03645 7.547586-7.835996 0-4.701596-3.07862-7.835994-7.547586-7.835994zm-.19862 13.71299h-3.177932V9.794994h3.17793c3.376553 0 5.76 2.252847 5.76 5.876994 0 3.917998-2.482757 5.779046-5.76 5.876996zm43.49793.29385c-3.575172 0-5.95862-2.644648-5.95862-6.170846 0-3.526197 2.482758-6.072895 5.95862-6.072895 2.78069 0 4.468966 1.5672 4.468966 1.5672l.794483-1.3713s-1.787587-1.86105-5.46207-1.86105c-4.766896 0-7.746206 3.526198-7.746206 7.738045 0 4.309797 3.07862 7.933945 7.944827 7.933945 3.773793 0 5.66069-2.5467 5.66069-2.5467l-1.092414-1.175398c-.09931-.09795-1.588965 1.959-4.568276 1.959zm14.896553-14.00684h1.986206v15.67199h-1.986207zm10.924137 1.959h4.965517v13.71299h1.986207V9.794994h4.96552v-1.959H143.0069m30.587583 0l-4.766896 7.150344-4.866207-7.150347h-2.085518l5.95862 8.717546v6.954445h1.986208v-6.954444l5.85931-8.71754m-81.434482 0l-6.157242 15.67199h1.986207l1.688276-4.5057 6.45517-1.3713 2.18483 5.876998h1.986203l-6.05793-15.67199h-2.085518zm-1.886897 9.305242l2.97931-7.248294h.099315L97.92 16.063788l-5.56138 1.07745z"></path>
<path id="mark" fill="#02B3E4" d="M29 .5l1 .5v13c0 5.551887-2.8897 8.695692-5.995216 10.099885L24.0094 24.1l-7.620963 4.388562c-.05877.03456-.11776.068527-.176957.101902l-.08642.049764.001806-.00254C14.48289 29.545895 12.684682 30 11 30 6 30 0 26 0 18V6l2 1v11c0 8 6 10 9 10 1.858706 0 4.86901-.76773 6.89043-3.254517C14.181726 23.872636 10 20.678703 10 14V2.2L2 7 0 6l10-6 1 .5 1 .5v13c0 6.939958 4.515283 8.612086 7.017542 8.933368C19.625786 21.62159 20 19.997902 20 18V5l2 1v12c0 1.852645-.321777 3.49077-.878395 4.91438C23.648223 22.549217 28 20.813144 28 14V2.25L22 6l-2-1 8-5 1 .5z"></path>
</g>
</svg>
</div>
</a> <a id="ga-b898b9" title="Udacity" href="https://www.udacity.com/">
<div class="logo-mark">
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30" alt="Udacity">
<path id="mark" fill="#02B3E4" fill-rule="evenodd" d="M29 .5l1 .5v13c0 5.551887-2.8897 8.695692-5.995216 10.099885L24.0094 24.1l-7.620963 4.388562c-.05877.03456-.11776.068527-.176957.101902l-.08642.049764.001806-.00254C14.48289 29.545895 12.684682 30 11 30 6 30 0 26 0 18V6l2 1v11c0 8 6 10 9 10 1.858706 0 4.86901-.76773 6.89043-3.254517C14.181726 23.872636 10 20.678703 10 14V2.2L2 7 0 6l10-6 1 .5 1 .5v13c0 6.939958 4.515283 8.612086 7.017542 8.933368C19.625786 21.62159 20 19.997902 20 18V5l2 1v12c0 1.852645-.321777 3.49077-.878395 4.91438C23.648223 22.549217 28 20.813144 28 14V2.25L22 6l-2-1 8-5 1 .5z"></path>
</svg>
</div>
</a> </div>
<div class="header__navbar--navigation">
<nav role="navigation">
<a id="ga-83ccc8" title="Explore" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Pathfinder - Explore" data-analytics-payload="{"cta_message":"Explore","cta_type":"link","cta_destination":"self","cta_location":"HomePage"}" class="button button--navigation" href="https://www.udacity.com/pathfinder">Explore</a>
<a id="ga-261972" title="Nanodegree" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Nanodegree - Nanodegree" data-analytics-payload="{"cta_message":"Nanodegree","cta_type":"link","cta_destination":"self","cta_location":"HomePage"}" class="button button--navigation" href="https://www.udacity.com/nanodegree">Nanodegree</a>
<a id="ga-991dd3" title="Catalog" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Catalog - Catalog" data-analytics-payload="{"cta_message":"Catalog","cta_type":"link","cta_destination":"self","cta_location":"HomePage"}" class="button button--navigation" href="https://www.udacity.com/courses/all">Catalog</a>
<a id="ga-36609e" title="For Business" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Business - For Business" data-analytics-payload="{"cta_message":"For Business","cta_type":"link","cta_destination":"self","cta_location":"HomePage"}" class="button button--navigation" href="https://www.udacity.com/business">For Business</a>
<div class="button button--navigation divider"></div>
<a id="ga-d72a95" title="Blog" target="_blank" data-show-student="" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Blog - Blog" data-analytics-payload="{"cta_message":"Blog","cta_type":"link","cta_destination":"new_window","cta_location":"HomePage"}" class="button button--navigation button--student button--blog" href="http://blog.udacity.com/" style="display: inline;">Blog</a>
<a id="ga-99cff7" title="My Classroom" data-show-student="" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Classroom - My Classroom" data-analytics-payload="{"cta_message":"My Classroom","cta_type":"button","cta_destination":"self","cta_location":"HomePage"}" class="button button--primary button--student" href="https://classroom.udacity.com/" style="display: inline;">My Classroom</a>
<a id="ga-717ebb" title="Sign In" data-show-guest="" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Classroom - Sign In" data-analytics-payload="{"cta_message":"Sign In","cta_type":"button","cta_destination":"self","cta_location":"HomePage"}" class="button button--navigation button--student" href="https://auth.udacity.com/sign-in?next=https%3A%2F%2Fclassroom.udacity.com%2Fauthenticated">Sign In</a>
<a id="ga-a282d1" title="Get Started" data-show-guest="" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Sign Up - Get Started" data-analytics-payload="{"cta_message":"Get Started","cta_type":"link","cta_destination":"self","cta_location":"HomePage"}" class="button button--turquoise button--guest button--get-started" href="https://auth.udacity.com/sign-up?next=https%3A%2F%2Fclassroom.udacity.com%2Fauthenticated">Get Started</a>
</nav>
</div>
</div>
</header>
<header class="header__sidenav slideout-menu" id="nav--mobile">
<div class="header__sidenav--logo">
<a id="ga-83a2f8" title="Udacity" class="logo-link" href="https://www.udacity.com/">
<div class="logo-wordmark">
<svg xmlns="http://www.w3.org/2000/svg" width="180" height="30" viewBox="0 0 180 30" alt="Udacity">
<g fill="none" fill-rule="evenodd">
<path id="wordmark" fill="#2E3D49" d="M57.6 17.239187c0 2.546698-2.085517 4.407747-4.965517 4.407747-2.88 0-4.965517-1.86105-4.965517-4.407747V7.835994H45.68276v9.501143c0 3.330298 2.88 6.170846 6.951723 6.170846 4.071724 0 6.951724-2.938498 6.951724-6.170846V7.835994H57.6v9.403193zm16.286897-9.403193h-5.36276v15.67199h5.36276c4.468965 0 7.547586-3.03645 7.547586-7.835996 0-4.701596-3.07862-7.835994-7.547586-7.835994zm-.19862 13.71299h-3.177932V9.794994h3.17793c3.376553 0 5.76 2.252847 5.76 5.876994 0 3.917998-2.482757 5.779046-5.76 5.876996zm43.49793.29385c-3.575172 0-5.95862-2.644648-5.95862-6.170846 0-3.526197 2.482758-6.072895 5.95862-6.072895 2.78069 0 4.468966 1.5672 4.468966 1.5672l.794483-1.3713s-1.787587-1.86105-5.46207-1.86105c-4.766896 0-7.746206 3.526198-7.746206 7.738045 0 4.309797 3.07862 7.933945 7.944827 7.933945 3.773793 0 5.66069-2.5467 5.66069-2.5467l-1.092414-1.175398c-.09931-.09795-1.588965 1.959-4.568276 1.959zm14.896553-14.00684h1.986206v15.67199h-1.986207zm10.924137 1.959h4.965517v13.71299h1.986207V9.794994h4.96552v-1.959H143.0069m30.587583 0l-4.766896 7.150344-4.866207-7.150347h-2.085518l5.95862 8.717546v6.954445h1.986208v-6.954444l5.85931-8.71754m-81.434482 0l-6.157242 15.67199h1.986207l1.688276-4.5057 6.45517-1.3713 2.18483 5.876998h1.986203l-6.05793-15.67199h-2.085518zm-1.886897 9.305242l2.97931-7.248294h.099315L97.92 16.063788l-5.56138 1.07745z"></path>
<path id="mark" fill="#02B3E4" d="M29 .5l1 .5v13c0 5.551887-2.8897 8.695692-5.995216 10.099885L24.0094 24.1l-7.620963 4.388562c-.05877.03456-.11776.068527-.176957.101902l-.08642.049764.001806-.00254C14.48289 29.545895 12.684682 30 11 30 6 30 0 26 0 18V6l2 1v11c0 8 6 10 9 10 1.858706 0 4.86901-.76773 6.89043-3.254517C14.181726 23.872636 10 20.678703 10 14V2.2L2 7 0 6l10-6 1 .5 1 .5v13c0 6.939958 4.515283 8.612086 7.017542 8.933368C19.625786 21.62159 20 19.997902 20 18V5l2 1v12c0 1.852645-.321777 3.49077-.878395 4.91438C23.648223 22.549217 28 20.813144 28 14V2.25L22 6l-2-1 8-5 1 .5z"></path>
</g>
</svg>
</div>
</a> </div>
<nav class="header__sidenav--navigation" role="navigation">
<ul>
<li>
<a id="ga-16fbc1" title="Explore" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Pathfinder - Explore" data-cta-message="Explore" data-cta-type="link" data-cta-destination="self" data-cta-location="HomePage" href="https://www.udacity.com/pathfinder">Explore</a>
</li>
<li>
<a id="ga-8e990f" title="Nanodegree" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Nanodegree - Nanodegree" data-cta-message="Nanodegree" data-cta-type="link" data-cta-destination="self" data-cta-location="HomePage" href="https://www.udacity.com/nanodegree">Nanodegree</a>
</li>
<li>
<a id="ga-587d20" title="Catalog" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Catalog - Catalog" data-cta-message="Catalog" data-cta-type="link" data-cta-destination="self" data-cta-location="HomePage" href="https://www.udacity.com/courses/all">Catalog</a>
</li>
<li>
<a id="ga-c5c63e" title="For Business" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Business - For Business" data-cta-message="For Business" data-cta-type="link" data-cta-destination="self" data-cta-location="HomePage" href="https://www.udacity.com/business">For Business</a>
</li>
<li class="student" data-show-student="" style="display: list-item;">
<a id="ga-cbfe72" title="Blog" target="_blank" class="white" data-show-student="" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Blog - Blog" data-cta-message="Blog" data-cta-type="link" data-cta-destination="new_window" data-cta-location="HomePage" href="https://blog.udacity.com/" style="">Blog</a>
</li>
<li class="student" data-show-student="" style="display: list-item;">
<a id="ga-fe7a5c" title="My Classroom" data-show-student="" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Classroom - My Classroom" data-cta-message="My Classroom" data-cta-type="button" data-cta-destination="self" data-cta-location="HomePage" href="https://classroom.udacity.com/" style="">My Classroom</a>
</li>
<li class="guest" data-show-guest="">
<a id="ga-4d07b9" title="Sign In" data-show-guest="" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Classroom - Sign In" data-cta-message="Sign In" data-cta-type="button" data-cta-destination="self" data-cta-location="HomePage" href="https://auth.udacity.com/sign-in?next=https%3A%2F%2Fclassroom.udacity.com%2Fauthenticated">Sign In</a>
</li>
<li class="guest" data-show-guest="">
<a id="ga-b4b7eb" title="Get Started" class="turquoise" data-show-guest="" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Sign Up - Get Started" data-cta-message="Get Started" data-cta-type="link" data-cta-destination="self" data-cta-location="HomePage" href="https://auth.udacity.com/sign-up?next=https%3A%2F%2Fclassroom.udacity.com%2Fauthenticated">Get Started</a>
</li>
</ul>
</nav>
</header>
<div id="contain-all" class=" slideout-panel">
<div class="banner featured" data-eyebrow="">
<p>
<span class="brow"><span data-content-block="header/eyebrow">Sebastian Thrun invites you to enroll today in our new <a href="https://blog.udacity.com/2017/09/self-driving-cars-for-everyone.html">Intro to Self-Driving Cars Nanodegree program</a>.</span></span>
</p>
</div>
<header class="header" dir="ltr">
<div class="header__navbar">
<div class="header__navbar--toggle">
<a href="https://www.udacity.com/#" class="nav-toggle">
<span class="bar bar_top"></span>
<span class="bar bar_mid"></span>
<span class="bar bar_bottom"></span>
</a>
</div>
<div class="header__navbar--logo">
<a id="ga-55771c" title="Udacity" class="logo-link" href="https://www.udacity.com/">
<div class="logo-wordmark">
<svg xmlns="http://www.w3.org/2000/svg" width="180" height="30" viewBox="0 0 180 30" alt="Udacity">
<g fill="none" fill-rule="evenodd">
<path id="wordmark" fill="#2E3D49" d="M57.6 17.239187c0 2.546698-2.085517 4.407747-4.965517 4.407747-2.88 0-4.965517-1.86105-4.965517-4.407747V7.835994H45.68276v9.501143c0 3.330298 2.88 6.170846 6.951723 6.170846 4.071724 0 6.951724-2.938498 6.951724-6.170846V7.835994H57.6v9.403193zm16.286897-9.403193h-5.36276v15.67199h5.36276c4.468965 0 7.547586-3.03645 7.547586-7.835996 0-4.701596-3.07862-7.835994-7.547586-7.835994zm-.19862 13.71299h-3.177932V9.794994h3.17793c3.376553 0 5.76 2.252847 5.76 5.876994 0 3.917998-2.482757 5.779046-5.76 5.876996zm43.49793.29385c-3.575172 0-5.95862-2.644648-5.95862-6.170846 0-3.526197 2.482758-6.072895 5.95862-6.072895 2.78069 0 4.468966 1.5672 4.468966 1.5672l.794483-1.3713s-1.787587-1.86105-5.46207-1.86105c-4.766896 0-7.746206 3.526198-7.746206 7.738045 0 4.309797 3.07862 7.933945 7.944827 7.933945 3.773793 0 5.66069-2.5467 5.66069-2.5467l-1.092414-1.175398c-.09931-.09795-1.588965 1.959-4.568276 1.959zm14.896553-14.00684h1.986206v15.67199h-1.986207zm10.924137 1.959h4.965517v13.71299h1.986207V9.794994h4.96552v-1.959H143.0069m30.587583 0l-4.766896 7.150344-4.866207-7.150347h-2.085518l5.95862 8.717546v6.954445h1.986208v-6.954444l5.85931-8.71754m-81.434482 0l-6.157242 15.67199h1.986207l1.688276-4.5057 6.45517-1.3713 2.18483 5.876998h1.986203l-6.05793-15.67199h-2.085518zm-1.886897 9.305242l2.97931-7.248294h.099315L97.92 16.063788l-5.56138 1.07745z"></path>
<path id="mark" fill="#02B3E4" d="M29 .5l1 .5v13c0 5.551887-2.8897 8.695692-5.995216 10.099885L24.0094 24.1l-7.620963 4.388562c-.05877.03456-.11776.068527-.176957.101902l-.08642.049764.001806-.00254C14.48289 29.545895 12.684682 30 11 30 6 30 0 26 0 18V6l2 1v11c0 8 6 10 9 10 1.858706 0 4.86901-.76773 6.89043-3.254517C14.181726 23.872636 10 20.678703 10 14V2.2L2 7 0 6l10-6 1 .5 1 .5v13c0 6.939958 4.515283 8.612086 7.017542 8.933368C19.625786 21.62159 20 19.997902 20 18V5l2 1v12c0 1.852645-.321777 3.49077-.878395 4.91438C23.648223 22.549217 28 20.813144 28 14V2.25L22 6l-2-1 8-5 1 .5z"></path>
</g>
</svg>
</div>
</a> <a id="ga-b898b9" title="Udacity" href="https://www.udacity.com/">
<div class="logo-mark">
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30" alt="Udacity">
<path id="mark" fill="#02B3E4" fill-rule="evenodd" d="M29 .5l1 .5v13c0 5.551887-2.8897 8.695692-5.995216 10.099885L24.0094 24.1l-7.620963 4.388562c-.05877.03456-.11776.068527-.176957.101902l-.08642.049764.001806-.00254C14.48289 29.545895 12.684682 30 11 30 6 30 0 26 0 18V6l2 1v11c0 8 6 10 9 10 1.858706 0 4.86901-.76773 6.89043-3.254517C14.181726 23.872636 10 20.678703 10 14V2.2L2 7 0 6l10-6 1 .5 1 .5v13c0 6.939958 4.515283 8.612086 7.017542 8.933368C19.625786 21.62159 20 19.997902 20 18V5l2 1v12c0 1.852645-.321777 3.49077-.878395 4.91438C23.648223 22.549217 28 20.813144 28 14V2.25L22 6l-2-1 8-5 1 .5z"></path>
</svg>
</div>
</a> </div>
<div class="header__navbar--navigation">
<nav role="navigation">
<a id="ga-83ccc8" title="Explore" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Pathfinder - Explore" data-analytics-payload="{"cta_message":"Explore","cta_type":"link","cta_destination":"self","cta_location":"HomePage"}" class="button button--navigation" href="https://www.udacity.com/pathfinder">Explore</a>
<a id="ga-261972" title="Nanodegree" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Nanodegree - Nanodegree" data-analytics-payload="{"cta_message":"Nanodegree","cta_type":"link","cta_destination":"self","cta_location":"HomePage"}" class="button button--navigation" href="https://www.udacity.com/nanodegree">Nanodegree</a>
<a id="ga-991dd3" title="Catalog" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Catalog - Catalog" data-analytics-payload="{"cta_message":"Catalog","cta_type":"link","cta_destination":"self","cta_location":"HomePage"}" class="button button--navigation" href="https://www.udacity.com/courses/all">Catalog</a>
<a id="ga-36609e" title="For Business" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Business - For Business" data-analytics-payload="{"cta_message":"For Business","cta_type":"link","cta_destination":"self","cta_location":"HomePage"}" class="button button--navigation" href="https://www.udacity.com/business">For Business</a>
<div class="button button--navigation divider"></div>
<a id="ga-d72a95" title="Blog" target="_blank" data-show-student="" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Blog - Blog" data-analytics-payload="{"cta_message":"Blog","cta_type":"link","cta_destination":"new_window","cta_location":"HomePage"}" class="button button--navigation button--student button--blog" href="http://blog.udacity.com/" style="display: inline;">Blog</a>
<a id="ga-99cff7" title="My Classroom" data-show-student="" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Classroom - My Classroom" data-analytics-payload="{"cta_message":"My Classroom","cta_type":"button","cta_destination":"self","cta_location":"HomePage"}" class="button button--primary button--student" href="https://classroom.udacity.com/" style="display: inline;">My Classroom</a>
<a id="ga-717ebb" title="Sign In" data-show-guest="" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Classroom - Sign In" data-analytics-payload="{"cta_message":"Sign In","cta_type":"button","cta_destination":"self","cta_location":"HomePage"}" class="button button--navigation button--student" href="https://auth.udacity.com/sign-in?next=https%3A%2F%2Fclassroom.udacity.com%2Fauthenticated">Sign In</a>
<a id="ga-a282d1" title="Get Started" data-show-guest="" data-analytics-name="Navbar Link Clicked" data-analytics-category="Navbar Link" data-analytics-label="Navbar Link - Sign Up - Get Started" data-analytics-payload="{"cta_message":"Get Started","cta_type":"link","cta_destination":"self","cta_location":"HomePage"}" class="button button--turquoise button--guest button--get-started" href="https://auth.udacity.com/sign-up?next=https%3A%2F%2Fclassroom.udacity.com%2Fauthenticated">Get Started</a>
</nav>
</div>
</div>
</header>
<section class="hero--homepage">
<div class="contain">
<div class="hero__video">
<section class="video__arkit">
<div class="contain">
<div class="video__arkit--bg animated fadeIn">
<video poster="site-files/assets/video-bg-nd114-721e7eeee566deb14bb38e4ae0a81552ffb5b979e9b71e36825216006fb4f53c.jpg" autoplay="autoplay" loop="loop" class="video--responsive"><source src="site-files/assets/video-bg-nd114.mp4"><source src="site-files/assets/video-bg-nd114.ogv"><source src="site-files/assets/video-bg-nd114.webm"></video>
</div>
<a class="video__arkit--overlay" href="https://www.udacity.com/course/nd114?origin=homepage-module-hero" data-analytics-name="Trailer Video Played" data-analytics-category="Trailer Video" data-analytics-label="Trailer Video - ARKit Nanodegree Program">
<span class="video__arkit--content" style="">
<h6 class="white mb-half" style="">In Collaboration with Unity</h6>
<h1 class="white mb-half" style="">Learn ARKit</h1>
<p class="white small" style="">Put your skills to work in the exciting field of augmented reality! Learn the <br class="hidden-xs-down">fundamentals of AR, build your very own AR app using ARKit, and publish <br class="hidden-xs-down">your app to the Apple Store.</p>
<h4 class="white">Only $199</h4>
<div class="button--primary center">Start Learning Now</div>
</span>
</a>
</div>
</section>
</div>
<div class="hero__module">
<div class="hero__module--container">
<a id="ga-7096a2" class="card card--homepage" target="_self" data-analytics-name="CTA Clicked" data-analytics-category="Generic CTA" data-analytics-label="Generic CTA - New!" data-analytics-payload="{"cta_message":"New! - Data Foundations Nanodegree","cta_type":"card","cta_destination":"self","cta_location":"Homepage","variant":"turquoise"}" href="https://www.udacity.com/course/nd100?origin=side-promo-3">
<img srcset="site-files/assets/module-dfnd%401x.png 1x, site-files/assets/module-dfnd%402x.png 2x" src="./site-files/module-dfnd@1x.png" class="card--image" alt="New!">
<div class="card__content">
<h6 class="turquoise">New!</h6>
<p class="card__content--h5 slate strong">Data Foundations Nanodegree</p>
<p class="x-small mb-0">Enroll Now</p>
</div>
</a> </div>
<div class="hero__module--container">
<a id="ga-a9c3f5" class="card card--homepage" target="_self" data-analytics-name="CTA Clicked" data-analytics-category="Generic CTA" data-analytics-label="Generic CTA - Enroll Today!" data-analytics-payload="{"cta_message":"Enroll Today! - Become a VR Developer","cta_type":"card","cta_destination":"self","cta_location":"Homepage","variant":"turquoise"}" href="https://www.udacity.com/course/nd017">
<img srcset="site-files/assets/module-vr%401x.png 1x, site-files/assets/module-vr%402x.png 2x" src="./site-files/module-vr@1x.png" class="card--image" alt="Enroll Today!">
<div class="card__content">
<h6 class="turquoise">Enroll Today!</h6>
<p class="card__content--h5 slate strong">Become a VR Developer</p>
<p class="x-small mb-0">With Udacity and Unity</p>
</div>
</a> </div>
<div class="hero__module--container" style="">
<a id="ga-3de40a" class="card card--homepage" target="_self" data-analytics-name="CTA Clicked" data-analytics-category="Generic CTA" data-analytics-label="Generic CTA - STARTS SOON!" data-analytics-payload="{"cta_message":"STARTS SOON! - Connect Bay Area","cta_type":"card","cta_destination":"self","cta_location":"Homepage","variant":"magenta"}" href="https://www.udacity.com/uconnect">
<img srcset="site-files/assets/module-aind%401x.png 1x, site-files/assets/module-aind%402x.png 2x" src="./site-files/module-aind@1x.png" class="card--image" alt="STARTS SOON!" style="">
<div class="card__content" style="">
<h6 class="magenta">STARTS SOON!</h6>
<p class="card__content--h5 slate strong" style="">Connect Bay Area</p>
<p class="x-small mb-0" style="">Apply Now</p>
</div>
</a> </div>
</div>
</div>
</section>
<section class="partners">
<div class="contain">
<div class="partners__featured">
<svg xmlns="http://www.w3.org/2000/svg" width="106" height="72" viewBox="0 0 106 72" class="partners__featured--image">
<title>
logo-white-google
</title>
<g fill="none" fill-rule="evenodd">
<g id="logo" fill="#FFFFFF" transform="translate(0 22)">
<path d="M26.116 12.419H13.76v3.644h8.762c-.433 5.11-4.71 7.29-8.747 7.29-5.165 0-9.673-4.04-9.673-9.702 0-5.516 4.297-9.765 9.684-9.765 4.157 0 6.606 2.634 6.606 2.634l2.567-2.642S19.665.232 13.656.232C6.004.232.085 6.652.085 13.586c0 6.794 5.568 13.42 13.766 13.42 7.21 0 12.488-4.91 12.488-12.17 0-1.533-.223-2.418-.223-2.418v.001zM36.236 9.78c-5.07 0-8.702 3.94-8.702 8.534 0 4.663 3.524 8.676 8.762 8.676 4.742 0 8.627-3.603 8.627-8.575 0-5.7-4.52-8.635-8.687-8.635zm.05 3.38c2.494 0 4.856 2.003 4.856 5.232 0 3.16-2.352 5.22-4.867 5.22-2.763 0-4.942-2.2-4.942-5.245 0-2.98 2.153-5.207 4.954-5.207zM55.163 9.78c-5.07 0-8.702 3.94-8.702 8.534 0 4.663 3.524 8.676 8.762 8.676 4.742 0 8.627-3.603 8.627-8.575 0-5.7-4.52-8.635-8.687-8.635zm.05 3.38c2.494 0 4.856 2.003 4.856 5.232 0 3.16-2.352 5.22-4.867 5.22-2.763 0-4.942-2.2-4.942-5.245 0-2.98 2.152-5.207 4.954-5.207zM73.728 9.789c-4.653 0-8.311 4.051-8.311 8.598 0 5.18 4.24 8.615 8.23 8.615 2.468 0 3.78-.974 4.748-2.091v1.696c0 2.97-1.813 4.747-4.55 4.747-2.645 0-3.97-1.954-4.432-3.063l-3.327 1.382c1.18 2.481 3.556 5.068 7.786 5.068 4.627 0 8.153-2.896 8.153-8.972V10.306h-3.63v1.458c-1.116-1.196-2.642-1.975-4.667-1.975zm.337 3.373c2.28 0 4.623 1.937 4.623 5.243 0 3.362-2.337 5.214-4.674 5.214-2.48 0-4.789-2.002-4.789-5.182 0-3.304 2.397-5.275 4.84-5.275zM98.163 9.768c-4.39 0-8.075 3.472-8.075 8.594 0 5.42 4.108 8.635 8.496 8.635 3.663 0 5.91-1.992 7.252-3.777l-2.992-1.979c-.777 1.198-2.075 2.369-4.242 2.369-2.433 0-3.552-1.325-4.245-2.608l11.607-4.788-.602-1.403c-1.122-2.748-3.737-5.042-7.199-5.042zm.15 3.31c1.582 0 2.72.836 3.204 1.838l-7.752 3.22c-.334-2.493 2.043-5.058 4.549-5.058z"></path>
<polygon points="84.554 26.486 88.367 26.486 88.367 1.122 84.554 1.122 84.554 26.486"></polygon>
</g>
<rect width="106" height="72"></rect>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="99" height="72" viewBox="0 0 99 72" class="partners__featured--image">
<title>
logo-white-amazon
</title>
<g fill="none" fill-rule="evenodd">
<g id="logo" fill="#FFFFFF" transform="translate(0 31)">
<path d="M61.416 23.496C55.664 27.742 47.326 30 40.144 30c-10.063 0-19.126-3.721-25.984-9.916-.538-.486-.058-1.15.59-.774 7.398 4.307 16.548 6.901 25.999 6.901 6.375 0 13.383-1.323 19.831-4.06.972-.412 1.788.641.836 1.345"></path>
<path d="M63.81 20.762c-.736-.942-4.863-.446-6.718-.224-.561.067-.648-.424-.142-.78 3.293-2.313 8.687-1.645 9.314-.87.632.781-.166 6.192-3.25 8.774-.476.397-.927.185-.717-.34.695-1.734 2.25-5.617 1.513-6.56M57.223 3.417V1.169a.555.555 0 0 1 .57-.57h10.071a.56.56 0 0 1 .58.567v1.928c-.002.323-.275.745-.757 1.415l-5.217 7.45c1.936-.045 3.984.246 5.744 1.235.397.223.503.553.534.877v2.399c0 .33-.362.713-.742.513-3.1-1.624-7.213-1.801-10.64.02-.351.187-.717-.19-.717-.52v-2.28c0-.366.007-.99.375-1.545l6.044-8.675h-5.263c-.322 0-.58-.23-.582-.566M20.486 17.456h-3.064a.577.577 0 0 1-.548-.518l.002-15.73c0-.316.264-.567.591-.567h2.854a.576.576 0 0 1 .556.528v2.053h.058C21.68 1.236 23.08.31 24.967.31c1.917 0 3.118.927 3.976 2.913C29.687 1.236 31.374.31 33.176.31c1.287 0 2.689.53 3.547 1.721.972 1.325.772 3.244.772 4.933l-.003 9.927a.578.578 0 0 1-.59.566h-3.06a.574.574 0 0 1-.55-.565l-.001-8.34c0-.66.057-2.316-.087-2.945-.228-1.06-.914-1.358-1.8-1.358-.745 0-1.517.497-1.832 1.29-.314.796-.286 2.12-.286 3.013v8.339a.578.578 0 0 1-.59.566h-3.06a.575.575 0 0 1-.551-.565l-.003-8.34c0-1.754.286-4.335-1.887-4.335-2.203 0-2.117 2.515-2.117 4.335l-.001 8.339a.578.578 0 0 1-.591.566M77.143 3.52c-2.26 0-2.402 3.078-2.402 4.998 0 1.92-.029 6.025 2.374 6.025 2.374 0 2.488-3.31 2.488-5.329 0-1.324-.057-2.913-.458-4.17-.343-1.094-1.03-1.523-2.002-1.523zM77.115.31c4.548 0 7.007 3.907 7.007 8.872 0 4.799-2.717 8.607-7.007 8.607-4.462 0-6.893-3.907-6.893-8.773 0-4.9 2.46-8.706 6.893-8.706zM90.02 17.456h-3.053a.575.575 0 0 1-.55-.565l-.005-15.736A.58.58 0 0 1 87 .64h2.842a.583.583 0 0 1 .545.44v2.406h.058C91.303 1.335 92.503.309 94.62.309c1.373 0 2.717.496 3.575 1.854.801 1.258.801 3.376.801 4.9v9.898a.581.581 0 0 1-.587.495h-3.071a.577.577 0 0 1-.546-.495v-8.54c0-1.723.2-4.239-1.916-4.239-.744 0-1.43.497-1.773 1.258-.43.96-.487 1.92-.487 2.98v8.47a.586.586 0 0 1-.596.566M52.283 17.417a.633.633 0 0 1-.723.071c-1.018-.846-1.2-1.237-1.757-2.042-1.682 1.713-2.872 2.228-5.051 2.228-2.58 0-4.586-1.593-4.586-4.777 0-2.489 1.347-4.18 3.267-5.01 1.662-.73 3.984-.862 5.762-1.062v-.398c0-.73.057-1.592-.373-2.222-.373-.565-1.09-.797-1.72-.797-1.169 0-2.207.599-2.463 1.84-.053.277-.254.55-.532.565l-2.97-.322c-.25-.057-.529-.258-.457-.642.683-3.604 3.937-4.692 6.852-4.692 1.491 0 3.44.398 4.615 1.526 1.49 1.393 1.347 3.252 1.347 5.276v4.774c0 1.437.596 2.067 1.156 2.84.196.28.24.611-.01.815-.625.525-1.737 1.49-2.349 2.036l-.008-.007zm-3.088-7.473c0 1.195.028 2.189-.574 3.251-.487.862-1.261 1.394-2.12 1.394-1.176 0-1.864-.897-1.864-2.224 0-2.61 2.341-3.084 4.558-3.084v.663zM12.117 17.417a.633.633 0 0 1-.723.071c-1.018-.846-1.2-1.237-1.756-2.042-1.683 1.713-2.874 2.228-5.052 2.228C2.006 17.674 0 16.08 0 12.897c0-2.489 1.347-4.18 3.267-5.01 1.662-.73 3.985-.862 5.761-1.062v-.398c0-.73.058-1.592-.372-2.222-.373-.565-1.09-.797-1.72-.797-1.168 0-2.208.599-2.462 1.84-.053.277-.255.55-.533.565L.971 5.49c-.25-.057-.53-.258-.457-.642C1.197 1.245 4.45.157 7.366.157c1.49 0 3.44.398 4.615 1.526 1.49 1.393 1.347 3.252 1.347 5.276v4.774c0 1.437.596 2.067 1.156 2.84.195.28.24.611-.01.815a130.41 130.41 0 0 0-2.35 2.036l-.007-.007zM9.028 9.944c0 1.195.029 2.189-.573 3.251-.487.862-1.26 1.394-2.12 1.394-1.175 0-1.864-.897-1.864-2.224 0-2.61 2.341-3.084 4.557-3.084v.663z"></path>
</g>
<rect width="99" height="72"></rect>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="86" height="72" viewBox="0 0 86 72" xmlns:xlink="http://www.w3.org/1999/xlink" class="partners__featured--image">
<title>
logo-white-ibm
</title>
<defs>
<polygon id="a" points="0 31.101 85.933 31.101 85.933 0 0 0"></polygon>
</defs>
<g fill="none" fill-rule="evenodd" transform="translate(0 -.76)">
<g transform="translate(0 18)">
<path id="logo" fill="#FFFFFF" d="M17.775 24.71h24.647c-.034.497-.506 1.857-.729 2.173H17.775V24.71zM17.775 4.118h23.959c.206.358.672 1.712.73 2.174H17.776V4.118zM22.219 16.473h17.097c.557.377 1.59 1.617 2.002 2.174h-19.1v-2.174zM35.551 22.765h7.127c.017-.568-.213-1.737-.39-2.173h-6.737v2.173zM22.219 14.529h17.123c.557-.379 1.58-1.618 1.994-2.174H22.22v2.174zM35.551 8.237h7.1c-.002.504-.196 1.737-.371 2.174h-6.729V8.237zM17.775 28.828H40.06c-1.974 1.618-3.718 2.174-6.778 2.174H17.775v-2.174zM17.775 2.174h22.286C38.086.556 36.342 0 33.283 0H17.775v2.174z"></path>
<mask id="b" fill="white">
<use xlink:href="#a"></use>
</mask>
<polygon id="logo" fill="#FFFFFF" points="0 2.174 15.553 2.174 15.553 0 0 0" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="0 6.292 15.553 6.292 15.553 4.118 0 4.118" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="0 26.883 15.553 26.883 15.553 24.709 0 24.709" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="4.444 22.766 11.11 22.766 11.11 20.592 4.444 20.592" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="4.444 18.647 11.11 18.647 11.11 16.473 4.444 16.473" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="4.444 14.529 11.11 14.529 11.11 12.355 4.444 12.355" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="4.444 10.41 11.11 10.41 11.11 8.237 4.444 8.237" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="22.219 22.766 28.884 22.766 28.884 20.592 22.219 20.592" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="22.219 10.41 28.884 10.41 28.884 8.237 22.219 8.237" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="59.131 22.765 65.297 22.765 66.079 20.592 58.349 20.592" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="57.648 18.647 66.78 18.647 67.562 16.473 56.866 16.473" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="0 31.001 15.553 31.001 15.553 28.828 0 28.828" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="62.098 31.002 62.33 31.002 63.114 28.828 61.315 28.828" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="48.883 22.766 55.549 22.766 55.549 20.592 48.883 20.592" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="48.883 18.647 55.549 18.647 55.549 16.473 48.883 16.473" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="44.439 31.001 55.548 31.001 55.548 28.828 44.439 28.828" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="44.439 26.883 55.548 26.883 55.548 24.709 44.439 24.709" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="60.615 26.883 63.814 26.883 64.596 24.71 59.832 24.71" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="68.881 22.766 75.546 22.766 75.546 20.592 68.881 20.592" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="68.881 18.647 75.546 18.647 75.546 16.473 68.881 16.473" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="68.88 31.001 79.99 31.001 79.99 28.828 68.88 28.828" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="68.881 26.883 79.99 26.883 79.99 24.709 68.881 24.709" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="59.997 8.237 48.882 8.237 48.882 10.411 60.794 10.411" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="62.923 12.355 62.214 14.305 61.506 12.355 48.883 12.355 48.883 14.529 55.549 14.529 55.549 12.816 56.165 14.529 68.263 14.529 68.88 12.816 68.88 12.828 68.881 12.828 68.881 14.529 75.546 14.529 75.546 12.355" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="56.979 .001 44.439 .001 44.439 2.174 57.776 2.174" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="58.488 4.118 44.439 4.118 44.439 6.292 59.285 6.292" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="64.431 8.237 75.546 8.237 75.546 10.411 63.634 10.411" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="67.449 .001 79.99 .001 79.99 2.174 66.653 2.174" mask="url(#b)"></polygon>
<polygon id="logo" fill="#FFFFFF" points="65.94 4.118 79.989 4.118 79.989 6.292 65.143 6.292" mask="url(#b)"></polygon>
<path id="logo" fill="#FFFFFF" d="M84.127 29.275c.278 0 .685.045.685-.342 0-.296-.25-.332-.49-.332h-.561v.674h.366zm.92 1.06h-.287l-.56-.875h-.44v.876h-.24v-1.901h.856c.518 0 .695.188.695.503 0 .374-.268.512-.616.522l.593.876zm.597-.951c0-.828-.62-1.475-1.471-1.475-.855 0-1.48.647-1.48 1.475 0 .835.625 1.482 1.48 1.482.85 0 1.471-.647 1.471-1.482zm-3.229 0c0-.935.787-1.7 1.758-1.7.968 0 1.75.765 1.75 1.7 0 .943-.782 1.707-1.75 1.707-.971 0-1.758-.764-1.758-1.707z" mask="url(#b)"></path>
</g>
<rect width="86" height="72" y=".76"></rect>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="136" height="72" viewBox="0 0 136 72" class="partners__featured--image">
<title>
logo-white-nvidia
</title>
<g fill="none" fill-rule="evenodd">
<g id="logo" fill="#FFFFFF" transform="translate(0 26)">
<path d="M125.825 7.967l2.885 8.065h-5.866l2.98-8.065zm-3.097-3.143l-6.66 17.217h4.704l1.054-3.043h7.874l1.006 3.043h5.108l-6.717-17.217h-6.37zm-13.37 17.223h4.77V4.82h-4.77v17.227zM76.23 4.82l-3.98 13.653L68.436 4.82h-5.148l5.446 17.227h6.875L81.1 4.82h-4.868zM95.52 8.57h2.05c2.975 0 4.9 1.364 4.9 4.899 0 3.538-1.925 4.901-4.9 4.901h-2.05v-9.8zm-4.731-3.75v17.227h7.735c4.122 0 5.467-.7 6.923-2.267 1.028-1.1 1.692-3.516 1.692-6.158 0-2.42-.562-4.582-1.543-5.927-1.768-2.406-4.314-2.875-8.113-2.875h-6.694zm-45.201-.026v17.253h4.812v-13.1l3.728.002c1.235 0 2.114.314 2.71.961.754.82 1.062 2.143 1.062 4.562v7.575h4.662v-9.532c0-6.803-4.25-7.72-8.41-7.72h-8.564zm37.52.024l.003 17.23h4.77V4.817h-4.772z"></path>
<path d="M4.118 11.757S7.763 6.27 15.04 5.703v-1.99C6.98 4.374 0 11.338 0 11.338s3.953 11.659 15.04 12.726v-2.115C6.904 20.903 4.118 11.757 4.118 11.757zM15.04 17.74v1.937c-6.15-1.118-7.856-7.639-7.856-7.639s2.953-3.337 7.856-3.877v2.125h-.01c-2.573-.316-4.584 2.136-4.584 2.136s1.127 4.13 4.594 5.318zm0-17.699v3.672c.236-.02.473-.035.71-.043 9.165-.315 15.134 7.666 15.134 7.666s-6.857 8.507-14.001 8.507c-.654 0-1.267-.062-1.843-.166v2.27c.492.063 1.003.101 1.535.101 6.648 0 11.456-3.464 16.112-7.563.77.631 3.93 2.164 4.581 2.836-4.427 3.78-14.743 6.828-20.591 6.828-.563 0-1.106-.034-1.637-.087v3.19h25.268V.042H15.04zm0 8.12V5.703c.234-.016.47-.03.71-.037 6.59-.211 10.913 5.777 10.913 5.777s-4.669 6.615-9.675 6.615c-.72 0-1.367-.119-1.948-.317v-7.454c2.565.316 3.08 1.473 4.623 4.095l3.43-2.95s-2.503-3.35-6.724-3.35c-.46 0-.899.032-1.329.08z" transform="translate(0 .042)"></path>
</g>
<rect width="136" height="73"></rect>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="190" height="72" viewBox="0 0 190 72" class="partners__featured--image">
<title>
logo-white-mercedes-benz
</title>
<g fill="none" fill-rule="evenodd">
<g id="logo" fill="#FFFFFF" transform="translate(0 15)">
<path d="M40.577 33.255L26.09 20.923l-3.18-18.091c11.196.111 20.238 9.235 20.238 20.475 0 3.61-.934 7.003-2.572 9.948zm-.215.373l.106-.184.003.001-.107.184-.002-.001zM22.704 43.785c-7.441 0-13.954-3.983-17.53-9.937l17.06-6.693 18.011 6.675c-3.573 5.964-10.091 9.955-17.54 9.955zM4.91 33.395l.003-.002.114.2-.003.001-.114-.199zm17.323-30.56l-2.77 18.088-14.665 12.27a20.411 20.411 0 0 1-2.538-9.886c0-11.151 8.9-20.22 19.973-20.472zm.471-.006l.047.001v.003h-.18v-.002l.133-.002zm0-2.264C10.165.565 0 10.747 0 23.307S10.165 46.05 22.704 46.05c12.54 0 22.705-10.182 22.705-22.742S35.243.565 22.704.565z"></path>
<g transform="translate(56.826 16.844)">
<polygon points="84.853 9.786 84.853 8.628 89.761 8.628 89.761 9.786"></polygon>
<path d="M3.254 1.61l-.44 11.606v.202c0 .983.285 1.185 1.826 1.299v.535c-1.12-.088-1.558-.114-2.17-.114-.611 0-1.05.026-2.195.114v-.535c1.532-.114 1.756-.29 1.8-1.5l.464-10.985v-.131C2.54 1.074 2.23.846.714.758V.197c.852.07 1.188.088 1.8.088.809 0 1.248-.027 2.083-.115L8.68 11.488 12.829.17c.99.088 1.447.115 2.11.115.551 0 .904-.027 1.731-.088v.561c-1.49.088-1.825.316-1.825 1.316v.158l.24 10.984c.026 1.211.216 1.387 1.8 1.5v.536c-1.386-.132-1.911-.176-2.747-.176-.835 0-1.36.044-2.747.176v-.535c1.49-.088 1.826-.334 1.826-1.386v-.115l-.198-11.59-3.625 9.976-.267.737-.31.825-.284.85-.242.738h-.327l-.24-.72-.31-.868-.31-.869-.268-.78-3.582-9.906zM22.603 14.7c-1.998 0-2.876-1.563-2.902-5.054h6.545c-.043-3.448-1.43-5.282-4.022-5.282-2.635 0-4.28 2.167-4.28 5.615 0 3.448 1.645 5.457 4.478 5.457 2.153 0 3.557-1.369 3.84-3.667h-.877c-.259 1.904-1.223 2.93-2.782 2.93zm-2.859-5.861c.224-2.571 1.05-3.896 2.463-3.896 1.43 0 2.153 1.255 2.282 3.896h-4.745zM27.555 5.189v-.404c1.248-.114 1.997-.245 2.901-.517.112.824.155 1.184.199 1.86v.245c.482-1.272 1.429-2.009 2.566-2.009 1.102 0 1.911.737 1.911 1.816 0 .65-.37 1.07-.921 1.07-.508 0-.904-.315-.904-.763 0-.044.026-.131.043-.22l.043-.227v-.202c0-.316-.267-.535-.663-.535-1.145 0-1.869 1.412-1.869 3.623v4.676c0 .966.224 1.141 1.559 1.211v.448c-1.206-.114-1.67-.132-2.437-.132-.792 0-1.249.026-2.463.132v-.448c1.343-.07 1.585-.245 1.585-1.21V6.284c-.026-.965-.13-1.07-1.275-1.096h-.275zM43.528 4.162v3.694h-.482c-.396-1.948-1.206-2.887-2.549-2.887-1.645 0-2.61 1.817-2.61 5.01 0 3.132.853 4.72 2.55 4.72 1.36 0 2.17-.982 2.437-2.956h.904c-.284 2.395-1.533 3.693-3.513 3.693-2.55 0-4.28-2.193-4.28-5.457 0-3.334 1.756-5.615 4.348-5.615.948 0 1.533.246 2.24.939l.593-1.14h.362zM49.986 14.7c-1.997 0-2.876-1.563-2.901-5.054h6.544c-.043-3.448-1.43-5.282-4.021-5.282-2.635 0-4.28 2.167-4.28 5.615 0 3.448 1.645 5.457 4.478 5.457 2.152 0 3.556-1.369 3.84-3.667h-.878c-.258 1.904-1.223 2.93-2.782 2.93zm-2.85-5.861c.224-2.571 1.05-3.896 2.463-3.896 1.43 0 2.153 1.255 2.282 3.896h-4.745zM63.842 12.936V.02c-1.102.299-2.084.474-3.316.614v.378c1.387 0 1.56.158 1.56 1.316v3.913c-.81-1.343-1.448-1.746-2.636-1.746-2.35 0-3.995 2.263-3.995 5.483 0 3.22 1.67 5.483 4.064 5.483 1.249 0 2.11-.579 2.721-1.833.086.85.086.939.31 1.79.904-.29 1.275-.378 2.566-.536l.327-.043v-.378c-1.472-.052-1.601-.166-1.601-1.526zm-4.125 1.895c-1.584 0-2.411-1.676-2.411-4.878 0-3.246.766-4.834 2.35-4.834 1.628 0 2.464 1.702 2.464 4.992-.01 3.114-.827 4.72-2.403 4.72zM70.929 14.7c-1.998 0-2.876-1.563-2.902-5.054h6.544c-.043-3.448-1.43-5.282-4.021-5.282-2.635 0-4.28 2.167-4.28 5.615 0 3.448 1.645 5.457 4.478 5.457 2.153 0 3.556-1.369 3.84-3.667h-.878c-.25 1.904-1.223 2.93-2.781 2.93zm-2.85-5.861c.215-2.571 1.05-3.896 2.462-3.896 1.43 0 2.153 1.255 2.282 3.896h-4.745zM76.44 15.462v-3.737l.482-.026c.396 2.035 1.318 3.018 2.859 3.018 1.292 0 2.265-.869 2.265-2.01 0-.763-.414-1.272-1.49-1.763l-.835-.377-1.008-.474c-1.602-.763-2.11-1.386-2.11-2.685 0-1.763 1.361-2.974 3.29-2.974.852 0 1.49.202 2.239.72l.37-.921h.396v3.465h-.508c-.198-1.79-.921-2.64-2.308-2.64-1.162 0-2.066.806-2.066 1.86 0 .894.327 1.184 2.325 2.078l.921.404c1.67.737 2.265 1.456 2.265 2.772 0 1.878-1.473 3.22-3.54 3.22-1.007 0-1.8-.272-2.634-.939l-.526 1.01h-.387zM100.129 3.917c0-1.167-.482-2.194-1.318-2.843-.749-.561-1.601-.807-3.03-.807h-5.779v.561c1.585.088 1.8.272 1.8 1.474v10.853c0 1.21-.172 1.369-1.8 1.5v.535h5.554c1.628 0 2.506-.201 3.428-.78 1.102-.72 1.825-2.08 1.825-3.492 0-1.21-.508-2.308-1.36-2.974-.465-.36-.948-.562-1.731-.72 1.584-.596 2.41-1.737 2.41-3.307zM93.653.969h1.869c1.843 0 2.66.921 2.66 3 0 1.027-.24 1.764-.722 2.352-.483.561-1.077.737-2.308.737h-1.49V.968h-.009zm2.093 6.773c1.162 0 1.825.202 2.325.72.508.517.792 1.473.792 2.552 0 2.238-1.102 3.492-3.048 3.492h-.792c-1.163 0-1.361-.175-1.361-1.167V7.751h2.084v-.01zM107.25 14.7c-1.997 0-2.876-1.563-2.902-5.054h6.545c-.043-3.448-1.43-5.282-4.022-5.282-2.635 0-4.28 2.167-4.28 5.615 0 3.448 1.645 5.457 4.478 5.457 2.153 0 3.557-1.369 3.841-3.667h-.878c-.259 1.904-1.223 2.93-2.782 2.93zm-2.85-5.861c.224-2.571 1.05-3.896 2.463-3.896 1.43 0 2.153 1.255 2.282 3.896H104.4zM112.055 5.285v-.377c1.275-.175 2.024-.36 2.902-.675.112.517.172 1.096.224 1.947.792-1.21 1.688-1.746 2.962-1.746 1.318 0 2.463.693 2.902 1.79.216.535.328 1.167.328 2.01v5.368c0 .966.223 1.141 1.558 1.211v.448c-1.162-.114-1.602-.132-2.394-.132-.81 0-1.248.026-2.394.132v-.448c1.189-.044 1.473-.272 1.473-1.167V8.172c0-1.948-.568-2.729-1.972-2.729-1.49 0-2.282.965-2.282 2.799v5.413c0 .895.284 1.123 1.43 1.167v.447c-1.146-.114-1.585-.131-2.369-.131-.766 0-1.231.026-2.368.131v-.447c1.344-.07 1.559-.246 1.559-1.21V6.363c-.026-.92-.155-1.052-1.249-1.052-.086-.01-.198-.027-.31-.027zM123.784 15.19l5.95-9.975h-2.704c-1.43 0-1.782.316-2.566 2.325h-.44l.509-2.904h7.552l-5.976 9.975h2.566c1.49 0 2.11-.605 2.764-2.64h.465l-.568 3.22h-7.552z"></path>
</g>
</g>
<rect width="190" height="73"></rect>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="90" height="72" viewBox="0 0 90 72" class="partners__featured--image">
<title>
logo-white-didi
</title>
<g fill="none" fill-rule="evenodd">
<g id="logo" fill="#FFFFFF" transform="translate(0 30)">
<path d="M45.914 23.05c.267 0 .492.1.67.298.176.197.254.44.23.718-.015.18-.074.352-.176.508a1.06 1.06 0 0 1-.897.49.934.934 0 0 1-.485-.128.834.834 0 0 1-.327-.362.967.967 0 0 1-.09-.508 1.09 1.09 0 0 1 .353-.718 1.03 1.03 0 0 1 .722-.298m.035-.396c-.412 0-.771.15-1.067.447a1.51 1.51 0 0 0-.45.959c-.033.37.07.698.306.974s.563.417.971.417c.408 0 .757-.14 1.04-.417.284-.276.444-.605.475-.974a1.283 1.283 0 0 0-.288-.961c-.245-.295-.577-.445-.987-.445M74.911 23.078c.268 0 .493.1.67.297a.92.92 0 0 1 .231.72c-.015.179-.075.35-.176.506a1.06 1.06 0 0 1-.897.49.935.935 0 0 1-.485-.128.834.834 0 0 1-.328-.362.965.965 0 0 1-.089-.507 1.09 1.09 0 0 1 .352-.72 1.03 1.03 0 0 1 .722-.296m.035-.397c-.412 0-.77.15-1.066.448a1.51 1.51 0 0 0-.451.958c-.032.37.071.698.307.974.236.277.563.417.971.417.407 0 .757-.14 1.04-.417.284-.276.443-.605.475-.974a1.283 1.283 0 0 0-.288-.96c-.245-.296-.577-.446-.988-.446M50.462 15.027c-.34.153-1.493.497-1.762.527-.425.046-.874.06-.874.06h-4.992s-.095.009-.15-.063c-.052-.073-.04-.165-.04-.165l.52-6.183.54-6.182s.002-.093.067-.165c.067-.071.16-.064.16-.064h4.992s.446.014.864.061c.265.03 1.359.375 1.672.527 2.189 1.082 3.398 3.21 3.182 5.823-.232 2.614-1.805 4.742-4.179 5.824m5.25-11.782C54.568 1.702 52.901.686 50.86.206a7.318 7.318 0 0 0-1.022-.148c-.383-.032-.798-.032-.798-.032l-4.718.015h-2.7v.003a.386.386 0 0 0-.357.35l-.748 8.81-.76 8.81a.313.313 0 0 0 .296.349v.002h2.701l4.715.016s.415 0 .803-.031a7.969 7.969 0 0 0 1.047-.15c2.124-.48 3.965-1.495 5.374-3.039a10.214 10.214 0 0 0 2.598-5.958c.185-2.214-.374-4.33-1.579-5.958M61.78 4.26h-1.7c-.297 0-.557.227-.58.503l-1.054 12.31c-.002.03 0 .062.002.094.01.661.57 1.178 1.276 1.178.708 0 1.356-.517 1.479-1.178a.634.634 0 0 0 .018-.095l1.054-12.309c.023-.276-.199-.504-.494-.504M61.066 2.66c.757 0 1.418-.574 1.48-1.284.06-.71-.503-1.284-1.26-1.284-.756 0-1.418.574-1.479 1.284-.06.71.504 1.285 1.26 1.285M77.488 15.02c-.34.152-1.491.496-1.76.526-.426.046-.873.06-.873.06h-4.987s-.094.009-.148-.063c-.053-.072-.04-.165-.04-.165l.518-6.174.54-6.175s.002-.092.067-.164c.066-.073.16-.064.16-.064H75.95s.445.014.862.06c.265.03 1.358.374 1.67.526 2.186 1.082 3.393 3.207 3.178 5.817-.231 2.609-1.802 4.735-4.173 5.816M82.73 3.253C81.59 1.712 79.923.698 77.884.218a7.373 7.373 0 0 0-1.02-.149c-.383-.03-.796-.03-.796-.03l-4.713.014h-2.697v.003a.385.385 0 0 0-.355.348l-.748 8.8-.759 8.799a.313.313 0 0 0 .296.348v.003h2.697l4.71.015s.414 0 .802-.031a7.93 7.93 0 0 0 1.045-.149c2.12-.48 3.96-1.493 5.367-3.035a10.203 10.203 0 0 0 2.595-5.95c.184-2.212-.374-4.325-1.577-5.951M88.857 4.21h-1.701c-.297 0-.556.228-.58.504l-1.053 12.309c-.002.03 0 .062.002.096.01.66.57 1.177 1.276 1.177.707 0 1.355-.517 1.479-1.178a.634.634 0 0 0 .018-.095l1.053-12.309c.024-.276-.198-.504-.494-.504M88.143 2.612c.756 0 1.418-.575 1.479-1.285.06-.71-.502-1.284-1.26-1.284-.755 0-1.417.574-1.478 1.284-.06.71.503 1.285 1.259 1.285M43.84 25.388a.072.072 0 0 1-.016.041.09.09 0 0 1-.044.028.538.538 0 0 1-.08.018.854.854 0 0 1-.124.007.84.84 0 0 1-.12-.007.425.425 0 0 1-.077-.018.07.07 0 0 1-.038-.028.067.067 0 0 1-.01-.041l.284-3.31h-.006l-1.6 3.307a.109.109 0 0 1-.029.035.14.14 0 0 1-.049.025.315.315 0 0 1-.075.015.98.98 0 0 1-.209-.002.356.356 0 0 1-.072-.015.137.137 0 0 1-.044-.026.072.072 0 0 1-.02-.032l-1.037-3.307h-.002l-.284 3.31a.076.076 0 0 1-.016.041.089.089 0 0 1-.045.028.524.524 0 0 1-.08.018.884.884 0 0 1-.126.007.832.832 0 0 1-.12-.007.42.42 0 0 1-.078-.018c-.018-.006-.03-.016-.036-.028a.067.067 0 0 1-.007-.041l.298-3.494c.007-.083.035-.14.082-.177a.247.247 0 0 1 .152-.052h.311c.064 0 .12.006.167.017a.354.354 0 0 1 .122.056c.034.025.06.058.081.097.02.04.038.085.052.138l.891 2.734h.015l1.34-2.725a.92.92 0 0 1 .085-.15.445.445 0 0 1 .094-.098.342.342 0 0 1 .109-.053.519.519 0 0 1 .133-.016h.328c.03 0 .058.004.084.013a.154.154 0 0 1 .066.041c.017.019.03.042.04.07.01.03.013.064.01.105l-.3 3.494zM50.199 23.216a.997.997 0 0 1 1.07-.141.78.78 0 0 1 .303.245.92.92 0 0 1 .145.366H49.88c.083-.207.19-.365.319-.47m1.664 1.064c-.067 0-.173.087-.173.087l-.018.027a1.744 1.744 0 0 1-.307.356c-.09.072-.198.13-.322.174a1.145 1.145 0 0 1-.379.066.816.816 0 0 1-.639-.276c-.156-.175-.23-.401-.22-.673h2.326l.002-.036c.028-.356-.045-.66-.216-.898-.24-.34-.589-.51-1.038-.51-.437 0-.805.167-1.094.498-.227.26-.357.56-.386.892-.03.353.066.674.284.954.22.28.549.423.979.423.192 0 .37-.03.53-.088.159-.06.307-.146.44-.258.131-.112.254-.262.363-.444l.013-.02a.21.21 0 0 0 .026-.082.171.171 0 0 0-.17-.192M61.562 24.579a1.054 1.054 0 0 1-.398.36c-.331.178-.707.18-1 0a.88.88 0 0 1-.336-.376.968.968 0 0 1-.093-.507c.014-.177.075-.347.178-.506.104-.16.238-.284.397-.372.16-.088.332-.132.512-.132.28 0 .511.098.687.292.174.194.25.439.226.727-.017.19-.074.363-.173.514zm.64-1.655a.178.178 0 0 0-.177-.165.22.22 0 0 0-.205.165h-.01l-.017.207a1.17 1.17 0 0 0-.379-.338 1.213 1.213 0 0 0-.585-.14c-.379 0-.72.138-1.013.41-.292.27-.457.6-.49.982-.033.39.074.724.317.996.244.272.56.41.936.41.212 0 .415-.045.601-.132.161-.076.313-.185.453-.324l-.015.185h.001a.182.182 0 0 0 .182.204c.11 0 .206-.091.216-.204l.193-2.256h-.007zM69.345 24.623a1.054 1.054 0 0 1-.398.36c-.331.177-.708.18-1.002 0a.883.883 0 0 1-.335-.377.968.968 0 0 1-.093-.507c.015-.176.075-.347.179-.506a1.11 1.11 0 0 1 .396-.371c.16-.088.333-.133.513-.133.28 0 .511.099.686.292.175.195.25.44.226.728-.016.19-.074.362-.172.514zm.648-1.655c-.01-.093-.07-.164-.185-.165-.097 0-.182.042-.215.165l-.017.207a1.17 1.17 0 0 0-.38-.338 1.214 1.214 0 0 0-.585-.14c-.378 0-.72.138-1.012.409-.293.27-.458.601-.49.983a1.27 1.27 0 0 0 .317.996c.244.272.558.41.936.41.212 0 .414-.045.6-.133.162-.075.314-.184.454-.323l-.016.185h.001a.183.183 0 0 0 .182.204c.11 0 .207-.092.216-.204l.194-2.256zM80.91 22.891l.001-.007c-.097-.09-.218-.096-.314-.11-.163-.022-.47.067-.674.333l.023-.266h-.006c-.003-.104-.08-.186-.184-.186a.229.229 0 0 0-.217.186h-.005l-.211 2.474h.004c.002.106.079.19.185.19a.229.229 0 0 0 .218-.19h.004l.062-.723c.038-.444.084-.743.137-.886a.929.929 0 0 1 .262-.41.5.5 0 0 1 .313-.128.42.42 0 0 1 .16.042.17.17 0 0 0 .088.027c.106 0 .2-.088.21-.197a.178.178 0 0 0-.057-.149M49.24 22.72l-.026-.024c-.006-.004-.012-.005-.019-.009a.25.25 0 0 0-.029-.013.583.583 0 0 0-.258-.07.726.726 0 0 0-.384.116c-.098.06-.197.147-.293.259l.026-.309h-.003a.186.186 0 0 0-.186-.195.229.229 0 0 0-.22.195h-.002l-.22 2.569-.002.005v.005s-.016.19.188.206c.185.015.225-.211.225-.211l.07-.823c.039-.444.085-.743.138-.886a.934.934 0 0 1 .261-.41.5.5 0 0 1 .313-.128c.044 0 .098.015.16.043l.027.011.002-.002a.19.19 0 0 0 .065.013c.108 0 .204-.09.212-.2a.185.185 0 0 0-.045-.142M64.915 24.101c.03-.356.016-.622-.043-.793a.813.813 0 0 0-.312-.414.906.906 0 0 0-.525-.153c-.197 0-.386.046-.56.137a1.558 1.558 0 0 0-.426.332l.017-.199h-.006a.181.181 0 0 0-.182-.203.224.224 0 0 0-.217.203l-.193 2.257h.005a.18.18 0 0 0 .181.183c.104 0 .193-.081.213-.183h.006l.067-.782c.029-.339.065-.573.107-.697a1.02 1.02 0 0 1 .347-.478.87.87 0 0 1 .542-.193c.169 0 .304.042.4.123.097.081.157.205.18.368.016.097.012.296-.013.59l-.09 1.046h.006l-.001.007c-.01.11.07.199.178.199.108 0 .202-.09.212-.2v-.006h.01l.097-1.144zM78.775 22.746a.233.233 0 0 0-.225.212v.01l-.09 1.072c-.028.318-.062.529-.103.625a.744.744 0 0 1-.286.337.851.851 0 0 1-.47.128.762.762 0 0 1-.454-.132.577.577 0 0 1-.23-.357c-.022-.108-.02-.31.004-.601l.093-1.08v-.002a.185.185 0 0 0-.185-.207.228.228 0 0 0-.22.207l-.096 1.12c-.031.372-.012.656.058.843.07.19.19.339.357.445.166.105.382.158.64.158.26 0 .485-.053.667-.158.183-.106.328-.255.43-.44.102-.186.17-.463.2-.824l.098-1.144a.19.19 0 0 0-.188-.212M84.79 23.307a1.01 1.01 0 0 1 1.082-.142c.13.062.233.146.307.248a.934.934 0 0 1 .145.37h-1.855a1.16 1.16 0 0 1 .321-.476m1.661 1.098a.21.21 0 0 0-.167.093h-.005a1.73 1.73 0 0 1-.31.359c-.09.073-.2.133-.325.177a1.152 1.152 0 0 1-.383.067.825.825 0 0 1-.646-.28c-.158-.176-.233-.405-.222-.68h2.35l.002-.035c.028-.362-.046-.667-.218-.909-.243-.342-.595-.516-1.05-.516-.44 0-.813.17-1.105.504-.23.263-.36.566-.39.902-.03.357.066.68.287.964.222.283.554.427.989.427.194 0 .375-.03.536-.09.16-.059.31-.146.444-.26.134-.113.258-.264.367-.448a.21.21 0 0 0 .022-.077.176.176 0 0 0-.176-.198M83.625 24.036c.03-.356.017-.623-.043-.794a.812.812 0 0 0-.312-.413.905.905 0 0 0-.525-.153c-.197 0-.385.046-.561.136a1.56 1.56 0 0 0-.425.332l.017-.194.002-.008v-.008l.002-.023h-.005a.183.183 0 0 0-.183-.178.227.227 0 0 0-.214.178h-.003l-.002.018c0 .005-.003.009-.004.013l.002.013-.198 2.322a.184.184 0 0 0 .184.206c.111 0 .21-.092.22-.206l.074-.857c.028-.338.064-.573.106-.696.065-.189.182-.35.347-.478a.869.869 0 0 1 .541-.193.61.61 0 0 1 .402.123c.096.08.156.205.18.368.016.097.01.295-.014.59l-.098 1.142h.002a.185.185 0 0 0 .184.206.227.227 0 0 0 .219-.206l.105-1.24zM89.36 22.454c.009-.11-.071-.2-.179-.2a.216.216 0 0 0-.191.124h-.001l-1.017 1.947-.709-1.948-.003.001a.175.175 0 0 0-.161-.106.221.221 0 0 0-.214.201c-.001.015.003.028.005.042l-.009.003.832 2.291-.429.793a.217.217 0 0 0-.037.099.183.183 0 0 0 .183.204.22.22 0 0 0 .204-.157h.001l1.72-3.243-.01-.003c.006-.016.013-.031.014-.048M58.92 23.16a.816.816 0 0 0-.313-.413.905.905 0 0 0-.525-.153 1.21 1.21 0 0 0-.558.136 1.589 1.589 0 0 0-.427.333l.09-1.204c.008-.094-.08-.194-.176-.194a.222.222 0 0 0-.208.166l-.296 3.391s-.02.229.18.229c.217 0 .224-.229.224-.229l.076-.884c.03-.34.065-.574.107-.697.065-.188.181-.349.347-.477a.868.868 0 0 1 .541-.193c.17 0 .304.041.4.123a.587.587 0 0 1 .184.368c.014.097.009.295-.017.59l-.104 1.184c.019.18.107.215.19.215.177 0 .217-.206.217-.206l.11-1.291c.031-.358.017-.625-.043-.795M56.053 22.66h-.395l.07-.786a.187.187 0 0 0-.186-.21.23.23 0 0 0-.222.21l-.066.787h-.459v.003h-.001a.193.193 0 0 0-.188.176.157.157 0 0 0 .158.176v.003h.46l-.19 2.212s-.002.22.176.22c.194 0 .226-.193.226-.193l.191-2.24h.395s.151-.015.166-.178c.013-.16-.135-.18-.135-.18M72.828 21.82a.26.26 0 0 0-.18.072.264.264 0 0 0-.088.175.22.22 0 0 0 .057.173c.044.047.1.072.168.072a.258.258 0 0 0 .18-.072.262.262 0 0 0 .088-.173.22.22 0 0 0-.057-.175.217.217 0 0 0-.168-.072M72.96 22.787a.192.192 0 0 0-.197-.206.227.227 0 0 0-.16.064.227.227 0 0 0-.073.142c-.001.004-.004.007-.004.01l-.19 2.192a1.872 1.872 0 0 1-.048.325.53.53 0 0 1-.085.182c-.09.115-.203.126-.243.131 0 0-.287.004-.295.02-.002.003-.079.052-.088.158a.165.165 0 0 0 .118.18s.28.002.303 0c0 0 .165 0 .286-.055.096-.044.18-.1.246-.178a.878.878 0 0 0 .16-.293c.039-.118.067-.275.083-.468l.189-2.193-.002-.01M15.789 20.379c5.368-.173 9.626-4.539 9.688-9.961V5.755h5.907v5.155c-.115 8.385-7.246 15-15.595 15.19v-.002C7.3 26.045.117 19.383 0 10.91V1.642C-.013.694.59.08 1.502.094L25.474.093v5.66l-18.797.005c-.483 0-.772.3-.772.789v3.776c.063 5.495 4.394 10 9.883 10.056z"></path>
<path d="M25.474.093L1.502.094h-.03C.577.093-.013.704 0 1.641v9.267C.117 19.382 7.301 26.045 15.79 26.1c8.35-.19 15.48-6.804 15.596-15.188V5.755h-5.908v4.663c-.062 5.422-4.32 9.788-9.688 9.96h-.001c-5.49-.055-9.82-4.56-9.883-10.055V6.547c0-.489.29-.79.771-.79l18.798-.003V.093zm-.433.443V5.31l-18.365.005c-.72 0-1.204.495-1.204 1.232v3.781a10.677 10.677 0 0 0 3.034 7.375 10.253 10.253 0 0 0 7.24 3.118l.01.002.047-.002c5.602-.18 10.042-4.747 10.107-10.403v-4.22h5.041v4.706c-.053 3.897-1.677 7.573-4.573 10.35a15.79 15.79 0 0 1-10.548 4.402h-.039a15.668 15.668 0 0 1-10.74-4.319C2.128 18.557.488 14.851.433 10.91V1.636c-.005-.34.09-.621.275-.813.181-.188.445-.287.764-.287h23.57z"></path>
<path d="M15.789 20.379c5.368-.173 9.626-4.539 9.688-9.961V5.755h5.907v5.155c-.115 8.385-7.246 15-15.595 15.19v-.002C7.3 26.045.117 19.383 0 10.91V1.642C-.013.694.59.08 1.502.094L25.474.093v5.66l-18.797.005c-.483 0-.772.3-.772.789v3.776c.063 5.495 4.394 10 9.883 10.056z"></path>
</g>
<rect width="90" height="72"></rect>
</g>
</svg>
<svg xmlns="http://www.w3.org/2000/svg" width="110" height="72" viewBox="0 0 110 72" class="partners__featured--image">
<title>
logo-white-att
</title>
<g fill="none" fill-rule="evenodd">
<path id="logo" fill="#FFFFFE" d="M73.355 47.667a.475.475 0 0 1-.497-.497V32.588h-4.951a.475.475 0 0 1-.498-.498v-2.01c0-.295.203-.498.498-.498h13.18c.294 0 .497.203.497.497v2.011a.475.475 0 0 1-.497.498h-4.951V47.17a.475.475 0 0 1-.498.497h-2.283zm13.812-2.441c-1.493 0-2.759-1.108-2.759-2.668 0-1.583.905-2.374 2.307-3.165l3.662 3.934c-.791 1.198-1.764 1.899-3.21 1.899zm1.017-13.249c1.176 0 1.763.77 1.763 1.697 0 .994-.678 1.56-2.283 2.486-.927-.995-1.333-1.673-1.333-2.442 0-.994.678-1.74 1.853-1.74zM98.2 47.034l-3.82-4.137 2.532-4.34c.226-.384.022-.634-.34-.634h-2.193c-.361 0-.565.113-.745.407l-1.425 2.488-2.532-2.736c1.718-.95 3.346-2.216 3.346-4.476 0-2.645-1.854-4.431-4.883-4.431-2.962 0-4.928 1.92-4.928 4.725 0 1.107.475 2.373 1.514 3.571-2.125 1.176-3.527 2.577-3.527 5.2 0 3.414 2.6 5.403 5.901 5.403 2.667 0 4.273-1.153 5.425-2.69l1.718 1.899c.25.294.453.384.838.384h2.87c.362 0 .543-.316.25-.633zm-39.58-6.646l2.623-7.46 2.6 7.46h-5.223zm10.988 6.691L63.48 30.033c-.113-.316-.339-.451-.678-.451h-3.03c-.338 0-.542.135-.655.451L52.991 47.08c-.114.294.09.588.384.588h2.215c.34 0 .542-.158.655-.475l1.335-3.842h7.302l1.334 3.842c.112.317.316.475.655.475h2.352c.316 0 .497-.294.384-.588zm34.447.588a.475.475 0 0 0 .498-.497V32.588h4.95a.475.475 0 0 0 .498-.498v-2.01a.475.475 0 0 0-.497-.498h-13.18a.474.474 0 0 0-.498.497v2.011c0 .295.203.498.497.498h4.952V47.17c0 .294.204.497.497.497h2.283zm-95.31 8.798a22.58 22.58 0 0 0 13.864 4.751c5.712 0 10.92-2.12 14.895-5.604.047-.042.023-.071-.024-.042-1.783 1.191-6.867 3.792-14.87 3.792-6.956 0-11.352-1.552-13.834-2.938-.048-.024-.066.011-.03.04zm15.399 1.155c5.563 0 11.677-1.516 15.333-4.52 1-.818 1.955-1.908 2.808-3.371.491-.842.971-1.843 1.362-2.826.018-.047-.011-.071-.047-.018-3.4 5.006-13.247 8.128-23.414 8.128-7.187 0-14.918-2.298-17.946-6.689-.029-.04-.059-.023-.041.024 2.82 5.996 11.375 9.272 21.945 9.272zm-6.079-9.947c-11.57 0-17.027-5.392-18.017-9.07-.012-.054-.047-.042-.047.005 0 1.238.124 2.838.338 3.899.1.515.521 1.327 1.137 1.972 2.803 2.921 9.788 7.015 21.886 7.015 16.482 0 20.25-5.492 21.02-7.299.551-1.292.835-3.626.835-5.587 0-.474-.011-.853-.03-1.226 0-.06-.035-.065-.046-.006-.824 4.42-14.907 10.297-27.076 10.297zM2.18 28.91C1.517 30.225.782 32.447.563 33.596c-.095.492-.054.729.118 1.096 1.387 2.945 8.401 7.655 24.765 7.655 9.983 0 17.738-2.453 18.994-6.932.231-.824.243-1.695-.053-2.868-.332-1.31-.954-2.838-1.481-3.91-.018-.035-.048-.03-.041.012.195 5.871-16.175 9.657-24.434 9.657-8.946 0-16.41-3.566-16.41-8.07 0-.432.088-.864.2-1.314.013-.042-.023-.048-.04-.012zm35.358-7.21a.914.914 0 0 1 .142.52c0 2.513-7.684 6.956-19.918 6.956-8.987 0-10.67-3.335-10.67-5.456 0-.759.29-1.535.93-2.323.035-.047.006-.065-.036-.03a22.675 22.675 0 0 0-3.181 3.307c-.45.568-.729 1.072-.729 1.374 0 4.396 11.02 7.584 21.323 7.584 10.978 0 15.878-3.585 15.878-6.737 0-1.125-.439-1.783-1.558-3.057a26.591 26.591 0 0 0-2.145-2.168c-.036-.03-.06-.006-.036.03zm-3.365-2.513A22.347 22.347 0 0 0 22.608 16a22.444 22.444 0 0 0-11.725 3.282c-1.019.628-1.593 1.132-1.593 1.778 0 1.907 4.455 3.957 12.358 3.957 7.82 0 13.888-2.245 13.888-4.408 0-.515-.45-.876-1.363-1.422z"></path>
<rect width="110" height="72"></rect>
</g>
</svg>
</div>
</div>
</section>
<hr>
<section class="testimonials">
<div class="contain contain--small">
<h6 class="text-center">Our Amazing Community</h6>
<div class="arrow-slider-block">
<div class="arrow_slider clear">
<div class="flex-viewport" style="overflow: hidden; position: relative;"><ul class="slides" style="width: 1200%; transition-duration: 0s; transform: translate3d(-4720px, 0px, 0px);"><li class="clone" aria-hidden="true" style="width: 1180px; float: left; display: block;">
<blockquote>
<cite>
<h3 class="text-center italic mb-half">"I hope the Udacity experience can be as transformative and revealing for others as it has been for me."</h3>
<h6 class="mb-1 slate inline">— James, Graduate</h6>
</cite>
</blockquote>
</li>
<li class="" style="width: 1180px; float: left; display: block;">
<blockquote>
<cite>
<h3 class="text-center italic mb-half">"It was so worth it to get a Nanodegree. Seeing that first paycheck, I couldn’t believe it. I never thought I’d be here. It’s like a dream."</h3>
<h6 class="mb-1 slate inline">— Jennifer, Graduate</h6>
</cite>
</blockquote>
</li>
<li style="width: 1180px; float: left; display: block;" class="">
<blockquote>
<cite>
<h3 class="text-center italic mb-half">"Before Udacity, I was a high school math teacher with no CS background. Now I'm an Android Developer at Capital One, doing something I love while earning twice as much."</h3>
<h6 class="mb-1 slate inline">— Ben, Graduate</h6>
</cite>
</blockquote>
</li>
<li style="width: 1180px; float: left; display: block;" class="">
<blockquote>
<cite>
<h3 class="text-center italic mb-half">"Udacity has empowered me to be a better software engineer. They have given me opportunities that I would not have if I had to rely on the traditional education system."</h3>
<h6 class="mb-1 slate inline">— Jonathan, Graduate</h6>
</cite>
</blockquote>
</li>
<li style="width: 1180px; float: left; display: block;" class="flex-active-slide">
<blockquote>
<cite>
<h3 class="text-center italic mb-half">"I hope the Udacity experience can be as transformative and revealing for others as it has been for me."</h3>
<h6 class="mb-1 slate inline">— James, Graduate</h6>
</cite>
</blockquote>
</li>
<li class="clone" aria-hidden="true" style="width: 1180px; float: left; display: block;">
<blockquote>
<cite>
<h3 class="text-center italic mb-half">"It was so worth it to get a Nanodegree. Seeing that first paycheck, I couldn’t believe it. I never thought I’d be here. It’s like a dream."</h3>
<h6 class="mb-1 slate inline">— Jennifer, Graduate</h6>
</cite>
</blockquote>
</li></ul></div><ol class="flex-control-nav flex-control-paging"><li><a class="">1</a></li><li><a class="">2</a></li><li><a class="">3</a></li><li><a class="flex-active">4</a></li></ol><ul class="flex-direction-nav"><li class="flex-nav-prev"><a class="flex-prev" href="https://www.udacity.com/#">Previous</a></li><li class="flex-nav-next"><a class="flex-next" href="https://www.udacity.com/#">Next</a></li></ul></div>
</div>
<div class="text-center">
<img alt="Students" srcset="site-files/assets/student-testimonials@1x-638efe66576ae1a75790bd14d7874340ed30a75387a68f29274fe3c85112f5a3.png 1x, site-files/assets/student-testimonials@2x-970e27a23af7056495c8a69dfa1bf3df249b726d7b9ef46ebdac84905a23bcd3.png 2x" src="./site-files/student-testimonials@1x-638efe66576ae1a75790bd14d7874340ed30a75387a68f29274fe3c85112f5a3.png">
</div>
</div>
</section>
<section class="list-nanodegrees" id="individual-nanodegree-programs">
<div class="contain contain--none">
<div class="card__container nd-cards-reveal" data-sr-id="7" style="; visibility: visible; -webkit-transform: scale(1); opacity: 1;transform: scale(1); opacity: 1;-webkit-transition: -webkit-transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; transition: transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; ">
<div class="card card--nanodegree">
<a href="https://www.udacity.com/degrees/learn-arkit--nd114" title="Learn ARKit" data-node-key="nd114" data-analytics-name="Nanodegree CTA Clicked" data-analytics-category="Nanodegree CTA" data-analytics-label="Nanodegree CTA - card - nd114 - STANDARD" data-analytics-type="CTA" data-analytics-payload="{ "sku": "nd114", "cta_type": "card", "cta_destination": "NDOP", "cta_location": "Homepage" }">
<div class="card--nanodegree__header nd114">
<div class="card--nanodegree__header--overlay">
<span class="pill pill--white">New!</span>
</div>
</div>
<div class="card--nanodegree__title">
<h4>Learn ARKit</h4>
</div>
<div class="card--nanodegree__affiliates">
<ul>
<li><img alt="Unity" class="card--nanodegree__affiliates--image" src="./site-files/logo-color-unity-5351e60.svg"></li>
</ul>
</div>
</a>
</div>
</div>
<div class="card__container nd-cards-reveal" data-sr-id="8" style="; visibility: visible; -webkit-transform: scale(1); opacity: 1;transform: scale(1); opacity: 1;-webkit-transition: -webkit-transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; transition: transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; ">
<div class="card card--nanodegree">
<a href="https://www.udacity.com/degrees/intro-to-self-driving-cars--nd113" title="Intro to Self-Driving Cars" data-node-key="nd113" data-analytics-name="Nanodegree CTA Clicked" data-analytics-category="Nanodegree CTA" data-analytics-label="Nanodegree CTA - card - nd113 - STANDARD" data-analytics-type="CTA" data-analytics-payload="{ "sku": "nd113", "cta_type": "card", "cta_destination": "NDOP", "cta_location": "Homepage" }">
<div class="card--nanodegree__header nd113">
<div class="card--nanodegree__header--overlay">
<span class="pill pill--white">New!</span>
</div>
</div>
<div class="card--nanodegree__title">
<h4>Intro to Self-Driving Cars</h4>
</div>
</a>
</div>
</div>
<div class="card__container nd-cards-reveal" data-sr-id="9" style="; visibility: visible; -webkit-transform: scale(1); opacity: 1;transform: scale(1); opacity: 1;-webkit-transition: -webkit-transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; transition: transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; ">
<div class="card card--nanodegree">
<a href="https://www.udacity.com/degrees/data-foundations-nanodegree--nd100" title="Data Foundations" data-node-key="nd100" data-analytics-name="Nanodegree CTA Clicked" data-analytics-category="Nanodegree CTA" data-analytics-label="Nanodegree CTA - card - nd100 - STANDARD" data-analytics-type="CTA" data-analytics-payload="{ "sku": "nd100", "cta_type": "card", "cta_destination": "NDOP", "cta_location": "Homepage" }">
<div class="card--nanodegree__header nd100">
<div class="card--nanodegree__header--overlay">
<span class="pill pill--white">New!</span>
</div>
</div>
<div class="card--nanodegree__title">
<h4>Data Foundations</h4>
</div>
<div class="card--nanodegree__affiliates">
<ul>
<li><img alt="Tableau" class="card--nanodegree__affiliates--image" src="./site-files/logo-color-tableau-cf029ff.svg"></li>
<li><img alt="Mode" class="card--nanodegree__affiliates--image" src="./site-files/logo-color-mode-9df2c67.svg"></li>
</ul>
</div>
</a>
</div>
</div>
<div class="card__container nd-cards-reveal" data-sr-id="10" style="; visibility: visible; -webkit-transform: scale(1); opacity: 1;transform: scale(1); opacity: 1;-webkit-transition: -webkit-transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; transition: transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; ">
<div class="card card--nanodegree">
<a href="https://www.udacity.com/degrees/data-analyst-nanodegree--nd002" title="Data Analyst" data-node-key="nd002" data-analytics-name="Nanodegree CTA Clicked" data-analytics-category="Nanodegree CTA" data-analytics-label="Nanodegree CTA - card - nd002 - STANDARD" data-analytics-type="CTA" data-analytics-payload="{ "sku": "nd002", "cta_type": "card", "cta_destination": "NDOP", "cta_location": "Homepage" }">
<div class="card--nanodegree__header nd002">
<div class="card--nanodegree__header--overlay">
</div>
</div>
<div class="card--nanodegree__title">
<h4>Data Analyst</h4>
</div>
<div class="card--nanodegree__affiliates">
<ul>
<li><img alt="kaggle" class="card--nanodegree__affiliates--image" src="./site-files/logo-color-kaggle-dc766e9.svg"></li>
<li><img alt="Tableau" class="card--nanodegree__affiliates--image" src="./site-files/logo-color-tableau-cf029ff.svg"></li>
<li><img alt="Mode" class="card--nanodegree__affiliates--image" src="./site-files/logo-color-mode-9df2c67.svg"></li>
</ul>
</div>
</a>
</div>
</div>
<div class="card__container nd-cards-reveal" data-sr-id="11" style="; visibility: visible; -webkit-transform: scale(1); opacity: 1;transform: scale(1); opacity: 1;-webkit-transition: -webkit-transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; transition: transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; ">
<div class="card card--nanodegree">
<a href="https://www.udacity.com/degrees/react-nanodegree--nd019" title="React" data-node-key="nd019" data-analytics-name="Nanodegree CTA Clicked" data-analytics-category="Nanodegree CTA" data-analytics-label="Nanodegree CTA - card - nd019 - STANDARD" data-analytics-type="CTA" data-analytics-payload="{ "sku": "nd019", "cta_type": "card", "cta_destination": "NDOP", "cta_location": "Homepage" }">
<div class="card--nanodegree__header nd019">
<div class="card--nanodegree__header--overlay">
</div>
</div>
<div class="card--nanodegree__title">
<h4>React</h4>
</div>
</a>
</div>
</div>
<div class="card__container nd-cards-reveal" data-sr-id="12" style="; visibility: visible; -webkit-transform: scale(1); opacity: 1;transform: scale(1); opacity: 1;-webkit-transition: -webkit-transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; transition: transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; ">
<div class="card card--nanodegree">
<a href="https://www.udacity.com/degrees/intro-to-programming-nanodegree--nd000" title="Intro to Programming" data-node-key="nd000" data-analytics-name="Nanodegree CTA Clicked" data-analytics-category="Nanodegree CTA" data-analytics-label="Nanodegree CTA - card - nd000 - STANDARD" data-analytics-type="CTA" data-analytics-payload="{ "sku": "nd000", "cta_type": "card", "cta_destination": "NDOP", "cta_location": "Homepage" }">
<div class="card--nanodegree__header nd000">
<div class="card--nanodegree__header--overlay">
</div>
</div>
<div class="card--nanodegree__title">
<h4>Intro to Programming</h4>
</div>
</a>
</div>
</div>
</div>
<div class="contain nd-hub-link">
<a class="h4 blue" href="https://www.udacity.com/nanodegree" title="See all offerings" data-analytics-name="CTA Clicked" data-analytics-category="Nanodegree CTA" data-analytics-label="Nanodegree CTA - ND Hub" data-analytics-type="CTA" data-analytics-payload="{"cta_type":"link", "cta_message":"See all offerings", "cta_destination":"ND Hub", "cta_location": "Homepage" }">See all offerings <span class="icon__arrow--white"></span></a>
</div>
</section>
<section class="module-pathfinder bg-gradient-secondary">
<div class="contain">
<div class="card module-pathfinder__card bg-white">
<div class="module-pathfinder__card--icon">
<img alt="magnify" src="./site-files/icon_magnify_blue-ff7bcf6f4d2aa732141e49e2058aa844810ba446dc5ccd6243da24839faac959.svg">
</div>
<div class="module-pathfinder__card--copy">
<h3 class="blue light mb-half">Imagine your future!</h3>
<p class="mb-0">What do you want to learn today? What's your dream job? Discover the program that's right for you!</p>
</div>
<div class="module-pathfinder__card--cta">
<a id="ga-77d3e9" class="button--primary center" data-analytics-name="Pathfinder CTA Clicked" data-analytics-category="Pathfinder CTA" data-analytics-label="Pathfinder CTA - Button" data-analytics-payload="{"cta_message":"Get Started","cta_type":"button","cta_destination":"Pathfinder Page","cta_location":"Homepage"}" href="https://www.udacity.com/pathfinder">Get Started</a>
</div>
</div>
</div>
</section>
<section class="classroom">
<div class="contain">
<div class="classroom__intro">
<h2 class="text-center blue">The Udacity Advantage</h2>
</div>
<div class="features">
<div class="features__column">
<div class="features__column--content">
<div class="icon text-center mb-1 left-reveal" data-sr-id="1" style="; visibility: visible; -webkit-transform: translateX(0) scale(1); opacity: 1;transform: translateX(0) scale(1); opacity: 1;-webkit-transition: -webkit-transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; transition: transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; ">
<img alt="High quality content" src="./site-files/icon-bulb-1deb8560ed56a33a25b0687df486592ff84420769d1c89d69e489729b5e3cf20.svg">
</div>
<h3 class="blue mb-half">Master the most<br> competitive skills</h3>
<p class="small mb-0">Our Nanodegree programs are built with the world's most forward–thinking companies–Google, Facebook, AT&T, IBM, GitHub, and more. Our expert project reviewers, mentors and coaches ensure that you're job-ready.</p>
</div>
</div>
<div class="features__column bottom-reveal" data-sr-id="4" style="; visibility: visible; -webkit-transform: translateY(0) scale(1); opacity: 1;transform: translateY(0) scale(1); opacity: 1;-webkit-transition: -webkit-transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; transition: transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; ">
<div class="features__column--content features--module1">
<img alt="Master the most Competitive Skills" class="shadow-right" srcset="site-files/assets/thumb-competitive-skills-bg@1x-7b5e30a3be88d36682a9fe7d8f9ca7a0480d7aae74151368928fd3304e1fa3d3.jpg 1x, site-files/assets/thumb-competitive-skills-bg@2x-2bde560841d32dd70c5ee5b770bbe2aa0ff7ccdc29d205995cd780b1276b9ce4.jpg 2x" src="./site-files/thumb-competitive-skills-bg@1x-7b5e30a3be88d36682a9fe7d8f9ca7a0480d7aae74151368928fd3304e1fa3d3.jpg">
</div>
</div>
<div class="features__column ltr">
<div class="features__column--content">
<div class="icon text-center mb-1 right-reveal" data-sr-id="3" style="; visibility: visible; -webkit-transform: translateX(0) scale(1); opacity: 1;transform: translateX(0) scale(1); opacity: 1;-webkit-transition: -webkit-transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; transition: transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; ">
<img alt="Get hired by world-changing companies" src="./site-files/icon-badge-11824dcfbc96dea64dc90a1c9030ca485f2c7575bd58f869f2301f93e46dc083.svg">
</div>
<h3 class="magenta mb-half">Get hired by<br> world–changing companies</h3>
<p class="small mb-0">Hiring partnerships with leaders like IBM, Mercedes–Benz, Didi Chuxing, and more open amazing career opportunities... and Blitz gives you a new path to getting hired.</p>
</div>
</div>
<div class="features__column bottom-reveal" data-sr-id="5" style="; visibility: visible; -webkit-transform: translateY(0) scale(1); opacity: 1;transform: translateY(0) scale(1); opacity: 1;-webkit-transition: -webkit-transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; transition: transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; ">
<div class="features__column--content features--module2">
<img alt="Get hired by world-changing companies" class="shadow-right" srcset="site-files/assets/thumb-get-hired-bg@1x-843e622d955a63981d54de7a827bf0cc753f8473f86a9c5f276ec4a4b9f820ff.jpg 1x, site-files/assets/thumb-get-hired-bg@2x-8b7751fceff9b89d950eb33aab7ee6c6f29506616cf84016c16d659438d3459d.jpg 2x" src="./site-files/thumb-get-hired-bg@1x-843e622d955a63981d54de7a827bf0cc753f8473f86a9c5f276ec4a4b9f820ff.jpg">
</div>
</div>
<div class="features__column">
<div class="features__column--content">
<div class="icon text-center mb-1 left-reveal" data-sr-id="2" style="; visibility: visible; -webkit-transform: translateX(0) scale(1); opacity: 1;transform: translateX(0) scale(1); opacity: 1;-webkit-transition: -webkit-transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; transition: transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; ">
<img alt="Maximize your impact" src="./site-files/icon-keys-50711c2d663ee6a92abdc0263f0de5c55945a74299e961b4f182dff7729e2514.svg">
</div>
<h3 class="purple mb-half">Maximize your impact</h3>
<p class="small mb-0">Create an amazing future that you love in any field from transportation to commerce and health care to government. Expand your opportunities. Exceed your expectations. Excel!!</p>
</div>
</div>
<div class="features__column bottom-reveal" data-sr-id="6" style="; visibility: visible; -webkit-transform: translateY(0) scale(1); opacity: 1;transform: translateY(0) scale(1); opacity: 1;-webkit-transition: -webkit-transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; transition: transform 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 0.55s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; ">
<div class="features__column--content features--module3">
<img alt="Maximize your impact" class="shadow-right" srcset="site-files/assets/thumb-impact-bg@1x-16dad6677910c38b64bcf95ed368769856d7168bf47e28e1ca5e2822be8d108f.jpg 1x, site-files/assets/thumb-impact-bg@2x-9a332829cab287072bbe5df2d4cf9a29a5b9ec88ed6d22f654c3e7c46b6255ba.jpg 2x" src="./site-files/thumb-impact-bg@1x-16dad6677910c38b64bcf95ed368769856d7168bf47e28e1ca5e2822be8d108f.jpg">
</div>
</div>
</div>
</div>
</section>
<section class="programs bg-gray">
<div class="contain">
<a href="https://www.udacity.com/nanodegree" class="programs__cards programs-reveal" data-analytics-name="CTA Clicked" data-analytics-category="Nanodegree CTA" data-analytics-label="Nanodegree CTA - Homepage - Learn More" data-analytics-payload="{"cta_type": "link", "cta_destination": "ND Hub", "cta_location": "Homepage", "cta_message": "Learn More" }" data-sr-id="13" style="; visibility: visible; -webkit-transform: translateY(0) scale(1); opacity: 1;transform: translateY(0) scale(1); opacity: 1;-webkit-transition: color 0.3s ease 0s, -webkit-transform 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; transition: color 0.3s ease 0s, transform 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; ">
<div class="card programs__cards--content">
<div class="left text-center">
<img alt="Udacity Nanodegree Programs" src="./site-files/icon-nanodegree-3e2b3f498d898f59afb38b5f083fba4cfae561ae395c2a6826b37cf4878d110b.svg">
</div>
<div class="right">
<h4 class="mb-half blue">Nanodegree Programs</h4>
<p class="mb-0 small">Master cutting-edge skills in programs built with the most innovative companies in the world.</p>
</div>
</div>
</a>
<a href="https://www.udacity.com/courses/all" class="programs__cards programs-reveal" data-analytics-name="CTA Clicked" data-analytics-category="Course CTA" data-analytics-label="Courses CTA - Homepage - Learn More" data-analytics-payload="{"cta_type": "link", "cta_destination": "Catalog", "cta_location": "Homepage", "cta_message": "Learn More"}" data-sr-id="14" style="; visibility: visible; -webkit-transform: translateY(0) scale(1); opacity: 1;transform: translateY(0) scale(1); opacity: 1;-webkit-transition: color 0.3s ease 0s, -webkit-transform 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; transition: color 0.3s ease 0s, transform 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0s, opacity 1s cubic-bezier(0.6, 0.2, 0.1, 1) 0s; ">
<div class="card programs__cards--content">
<div class="left text-center">
<img alt="Udacity Free Courses" src="./site-files/icon-courses-3fd2d163f594822a46a4726178e19206ac7e4da3e21eb5c540c016d2ef6fbd30.svg">
</div>
<div class="right">
<h4 class="mb-half green">Free Courses</h4>
<p class="mb-0 small">Enhance your skillset and boost your hireability through flexible and independent learning.</p>
</div>
</div>
</a>
</div>
</section>
<section class="module-contact">
<div class="contain">
<div class="module-contact__content">
<h1 class="white">Contact Us</h1>
<p class="large white">If you have a question, we have an answer. If you need something, we'll help you. Contact us anytime.</p>
<a id="ga-c176c3" class="button--primary center" data-analytics-name="CTA Clicked" data-analytics-category="Generic CTA" data-analytics-label="Generic CTA - Contact Us Now" data-analytics-type="CTA" data-analytics-payload="{"cta_type":"button","cta_destination":"Contact Page","cta_location":"Homepage","cta_message":"Contact Us Now"}" href="https://www.udacity.com/contact">Contact Us Now</a>
</div>
</div>
</section>
<footer class="footer" dir="ltr">
<div class="contain contain--small">
<section class="footer__logo">
<a id="ga-71dc5f" title="Udacity" href="https://www.udacity.com/">
<div class="footer__logo__mark">
<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30" alt="Udacity">
<path id="mark" fill="#02B3E4" fill-rule="evenodd" d="M29 .5l1 .5v13c0 5.551887-2.8897 8.695692-5.995216 10.099885L24.0094 24.1l-7.620963 4.388562c-.05877.03456-.11776.068527-.176957.101902l-.08642.049764.001806-.00254C14.48289 29.545895 12.684682 30 11 30 6 30 0 26 0 18V6l2 1v11c0 8 6 10 9 10 1.858706 0 4.86901-.76773 6.89043-3.254517C14.181726 23.872636 10 20.678703 10 14V2.2L2 7 0 6l10-6 1 .5 1 .5v13c0 6.939958 4.515283 8.612086 7.017542 8.933368C19.625786 21.62159 20 19.997902 20 18V5l2 1v12c0 1.852645-.321777 3.49077-.878395 4.91438C23.648223 22.549217 28 20.813144 28 14V2.25L22 6l-2-1 8-5 1 .5z"></path>
</svg>
</div>
</a> </section>
<nav class="footer__primary" role="navigation">
<ul class="footer__nav">
<li class="footer__nav__col">
<h6 class="footer__nav__toggle">Featured Programs</h6>
<ul class="footer__nav__list">
<li><a id="ga-76f1ae" href="https://www.udacity.com/course/android-basics-nanodegree-by-google--nd803">Android Basics</a></li>
<li><a id="ga-7ce9e0" href="https://www.udacity.com/course/android-developer-nanodegree-by-google--nd801">Android Developer</a></li>
<li><a id="ga-13b622" href="https://www.udacity.com/course/ios-developer-nanodegree--nd003">Become an iOS Developer</a></li>
<li><a id="ga-1bc015" href="https://www.udacity.com/course/business-analyst-nanodegree--nd008">Business Analyst</a></li>
<li><a id="ga-15fd2f" href="https://www.udacity.com/course/data-analyst-nanodegree--nd002">Data Analyst</a></li>
<li><a id="ga-3ad7e4" href="https://www.udacity.com/course/data-foundations-nanodegree--nd100">Data Foundations</a></li>
<li><a id="ga-e271c0" href="https://www.udacity.com/course/front-end-web-developer-nanodegree--nd001">Front-End Web Developer</a></li>
<li><a id="ga-56b806" href="https://www.udacity.com/course/full-stack-web-developer-nanodegree--nd004">Full Stack Web Developer</a></li>
<li><a id="ga-f4c92c" href="https://www.udacity.com/course/intro-to-programming-nanodegree--nd000">Intro to Programming</a></li>
<li><a id="ga-c10b90" href="https://www.udacity.com/course/learn-arkit--nd114">Learn ARKit</a></li>
<li><a id="ga-a08e11" href="https://www.udacity.com/course/mobile-web-specialist-nanodegree--nd024">Mobile Web Specialist</a></li>
<li><a id="ga-9db2ba" href="https://www.udacity.com/course/react-nanodegree--nd019">React</a></li>
</ul>
</li>
<li class="footer__nav__col">
<h6 class="footer__nav__toggle">Only At Udacity</h6>
<ul class="footer__nav__list">
<li><a id="ga-25118f" href="https://www.udacity.com/course/artificial-intelligence-nanodegree--nd889">Artificial Intelligence</a></li>
<li><a id="ga-ea33c0" href="https://www.udacity.com/course/deep-learning-nanodegree-foundation--nd101">Deep Learning Foundations</a></li>
<li><a id="ga-420d1e" href="https://www.udacity.com/course/digital-marketing-nanodegree--nd018">Digital Marketing</a></li>
<li><a id="ga-7b52f3" href="https://www.udacity.com/course/intro-to-self-driving-cars--nd113">Intro to Self-Driving Cars</a></li>
<li><a id="ga-2e4e59" href="https://www.udacity.com/course/machine-learning-engineer-nanodegree--nd009">Machine Learning Engineer</a></li>
<li><a id="ga-d55167" href="https://www.udacity.com/course/robotics-nanodegree--nd209">Robotics</a></li>
<li><a id="ga-03cf76" href="https://www.udacity.com/course/self-driving-car-engineer-nanodegree--nd013">Self-Driving Car Engineer</a></li>
<li><a id="ga-167005" href="https://www.udacity.com/course/vr-developer-nanodegree--nd017">VR Developer</a></li>
</ul>
</li>
<li class="footer__nav__col">
<h6 class="footer__nav__toggle">Resources</h6>
<ul class="footer__nav__list">
<li><a id="ga-f8674b" href="https://www.udacity.com/courses/all">Catalog</a></li>
<li><a id="ga-99fff3" href="https://career-resource-center.udacity.com/">Career Resource Center</a></li>
<li><a id="ga-38e73f" href="https://www.udacity.com/hiring-partners">Hiring Partners</a></li>
<li><a id="ga-bd30cd" href="https://www.udacity.com/success">Student Success</a></li>
<li><a id="ga-77cfda" href="https://www.udacity.com/uconnect">Udacity Connect</a></li>
<li><a id="ga-34663d" href="https://www.udacity.com/talks">Udacity Talks</a></li>
<li><a id="ga-891906" href="https://www.udacity.com/scholarships">Scholarships</a></li>
</ul>
<h6 class="footer__nav__toggle">Programs</h6>
<ul class="footer__nav__list">
<li><a id="ga-b1c2f6" href="https://www.udacity.com/nanodegree/plus">Nanodegree Plus</a></li>
<li><a id="ga-989974" href="https://www.udacity.com/veterans">Veterans</a></li>
<li><a id="ga-a35613" href="https://www.udacity.com/georgia-tech">Georgia Tech</a></li>
<li><a id="ga-46a69b" href="https://www.udacity.com/self-driving-car">Udacity Self-Driving Car</a></li>
</ul>
</li>
<li class="footer__nav__col">
<h6 class="footer__nav__toggle">Company</h6>
<ul class="footer__nav__list">
<li><a id="ga-91d488" href="https://www.udacity.com/us">About</a></li>
<li><a id="ga-f5e608" href="http://blog.udacity.com/">Blog</a></li>
<li><a id="ga-86626a" href="https://www.udacity.com/press">In the News</a></li>
<li><a id="ga-e88c3e" href="https://www.udacity.com/jobs">Jobs</a></li>
<li><a id="ga-bb4b6b" href="https://www.udacity.com/mobile">Mobile</a></li>
<li><a id="ga-ec4f2b" href="https://www.udacity.com/intersect">Udacity Intersect</a></li>
</ul>
<h6 class="footer__nav__toggle">Business</h6>
<ul class="footer__nav__list">
<li><a id="ga-155002" href="https://www.udacity.com/business">Udacity for Business</a></li>
<li><a id="ga-03b1d0" href="https://www.udacity.com/corporate-training">Corporate Training</a></li>
<li><a id="ga-dd79c7" href="https://www.udacity.com/hire-talent">Hire Graduates</a></li>
</ul>
</li>
<li class="footer__nav__col">
<h6 class="footer__nav__toggle">Support</h6>
<ul class="footer__nav__list">
<li><a id="ga-fa1c6b" href="https://www.udacity.com/contact">Contact Us</a></li>
<li><a id="ga-1815e7" href="http://support.udacity.com/">Help and FAQ</a></li>
<li><a id="ga-977dbb" href="http://status.udacity.com/">Service Status</a></li>
<li><a id="ga-54f45e" href="https://www.udacity.com/sitemap/guides">Course Guides</a></li>
<li><a id="ga-7f1a5a" href="https://www.udacity.com/tech-requirements">Tech Requirements</a></li>
<li class="hidden-md-up"><a id="ga-284435" href="https://www.udacity.com/legal">Legal & Privacy</a></li>
<li class="hidden-md-up"><a id="ga-286606" href="https://www.udacity.com/regulatory-information">Regulatory Information</a></li>
<li class="hidden-md-up"><a id="ga-afe97b" href="https://www.udacity.com/sitemap">Site Map</a></li>
</ul>
</li>
</ul>
</nav>
<section class="footer__secondary">
<div class="footer__col">
<ul class="fineprint">
<li><p class="small mb-0">© 2011–2017 Udacity, Inc.</p></li>
<li class="fineprint__link hidden-sm-down"><a id="ga-117b14" href="https://www.udacity.com/legal">Legal & Privacy</a></li>
<li class="fineprint__link hidden-sm-down"><a id="ga-bb1d68" href="https://www.udacity.com/regulatory-information">Regulatory Information</a></li>
<li class="fineprint__link hidden-sm-down"><a id="ga-0913f0" href="https://www.udacity.com/sitemap">Site Map</a></li>
</ul>
</div>
<div class="footer__col">
<div class="locales">
<div id="footer-geo-toggle-dd-placeholder" class="dd-container"><div class="dd-select"><input class="dd-selected-value" type="hidden" id="footer-geo-toggle" value="#"><a class="dd-selected"><img class="dd-selected-image" src="./site-files/icon-flag-us-4ef639e75c4c904b0e45af5a9fd1091197d38bdf9ddd8cadd7cb79d95503e986.svg"><label class="dd-selected-text">United States</label></a><span class="dd-pointer dd-pointer-down"></span></div><ul class="dd-options dd-click-off-close" style=""><li><a class="dd-option"> <input class="dd-option-value" type="hidden" value="https://br.udacity.com"> <img class="dd-option-image" src="./site-files/icon-flag-br-a8b619f8d748e44e77016fd992181f70c54236acaa668993eeb84ed3793f8b22.svg"> <label class="dd-option-text">Brazil</label></a></li><li><a class="dd-option"> <input class="dd-option-value" type="hidden" value="https://cn.udacity.com"> <img class="dd-option-image" src="./site-files/icon-flag-cn-4353a1072f1d183176d8e06a34755d7f144884975845196f791d64ed905fce47.svg"> <label class="dd-option-text">China</label></a></li><li><a class="dd-option"> <input class="dd-option-value" type="hidden" value="https://de.udacity.com"> <img class="dd-option-image" src="./site-files/icon-flag-de-deedb1a7a695700236cb6ef4204ddbede5d197dab9b47716c87a0b4d5d9fc325.svg"> <label class="dd-option-text">Germany</label></a></li><li><a class="dd-option"> <input class="dd-option-value" type="hidden" value="https://in.udacity.com"> <img class="dd-option-image" src="./site-files/icon-flag-in-3da2d2c2cd96731bcf966e830c0fb687f96cba22a41a622a1e34668728fbbb03.svg"> <label class="dd-option-text">India</label></a></li><li><a class="dd-option dd-option-selected"> <input class="dd-option-value" type="hidden" value="#"> <img class="dd-option-image" src="./site-files/icon-flag-us-4ef639e75c4c904b0e45af5a9fd1091197d38bdf9ddd8cadd7cb79d95503e986.svg"> <label class="dd-option-text">United States</label></a></li></ul></div>
</div>
<ul class="social">
<li>
<a id="ga-6f4fc2" target="_blank" title="Facebook" href="https://www.facebook.com/Udacity">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" alt="Facebook">
<path id="icon-social" fill="#000000" fill-rule="evenodd" d="M16.55299 23.990472v-9.290337h3.11838l.466877-3.620674H16.55299V8.76782c0-1.04827.291055-1.762607 1.794336-1.762607l1.917303-.000898V3.766022c-.331777-.044044-1.469755-.14265-2.7938-.14265-2.764314 0-4.656808 1.68728-4.656808 4.785976v2.670113H9.68764v3.620676h3.126383v9.290337h3.738966"></path>
</svg>
</a> </li>
<li>
<a id="ga-64b5ba" target="_blank" title="Twitter" href="https://twitter.com/udacity">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" alt="Twitter">
<path id="icon-social" fill="#000000" fill-rule="evenodd" d="M8.31918 20.297607c7.58269 0 11.730104-6.270665 11.730104-11.708558 0-.17811 0-.355415-.012056-.531918.806842-.58253 1.50332-1.30381 2.056827-2.13007-.752418.33279-1.550594.551034-2.367883.647446.860623-.51428 1.504742-1.323153 1.812484-2.276086-.809262.47933-1.694616.817138-2.617854.998846-1.277915-1.356348-3.30851-1.68832-4.953145-.809762-1.644634.878557-2.494295 2.74915-2.07254 4.562856-3.3148-.165873-6.403192-1.728667-8.49657-4.29945-1.094224 1.880273-.535316 4.285698 1.276374 5.49325-.656075-.019408-1.29785-.196067-1.871156-.515067v.05215c.000537 1.958854 1.38388 3.646015 3.307482 4.033892-.606946.16522-1.243758.189373-1.861514.0706.540088 1.676313 2.087834 2.824673 3.85163 2.85774-1.459845 1.14521-3.263227 1.766896-5.119965 1.76503-.328013-.00063-.655706-.020453-.981394-.05937 1.885335 1.207662 4.079025 1.84824 6.31918 1.845257"></path>
</svg>
</a> </li>
<li>
<a id="ga-5697c1" target="_blank" title="Medium" href="https://medium.com/udacity">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" alt="Medium">
<path id="icon-social" fill="#000000" fill-rule="evenodd" d="M21.095868 7.13293c-.003757-.00287-.00662-.006635-.01109-.008786l-.00644-.003228-5.647355-2.830564c-.038283-.019008-.078354-.032098-.118962-.0425-.05098-.013268-.10286-.02116-.155094-.02116-.216277 0-.43166.10885-.548295.29857l-3.251312 5.29639 4.080284 6.64649 5.67544-9.244835c.018965-.030663.00984-.068858-.01717-.090377M9.76754 8.53387v5.96381l5.450657 2.650543m.501547.55504l4.505583 2.21278c.586275.288044 1.06156.08654 1.06156-.45015V8.816878l-5.567143 8.886385zM8.80403 6.973853L3.202026 4.22503c-.1012-.049567-.197495-.073102-.284524-.073102-.24546 0-.41752.186322-.41752.498878V16.52012c0 .31773.236922.693938.526533.836042l4.933935 2.420933c.126637.062048.247096.091467.355928.091467.30669 0 .521627-.232857.521627-.623687V7.02788c0-.022823-.01308-.043863-.033975-.054026"></path>
</svg>
</a> </li>
<li>
<a id="ga-ff18b5" target="_blank" title="LinkedIn" href="https://www.linkedin.com/company/udacity">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" alt="LinkedIn">
<path id="icon-social" fill="#000000" fill-rule="evenodd" d="M18.366728 18.338h-2.674412v-4.1775c0-.996-.017032-2.2775-1.389553-2.2775-1.392057 0-1.604447 1.0855-1.604447 2.2065v4.2485h-2.671408v-8.59h2.56371v1.1745h.037068c.356655-.6755 1.229258-1.3875 2.530148-1.3875 2.708475 0 3.208894 1.7785 3.208894 4.092v4.711zM7.011368 8.5745c-.859077 0-1.55185-.6935-1.55185-1.5485 0-.8545.692773-1.548 1.55185-1.548.855572 0 1.549848.6935 1.549848 1.548 0 .855-.694276 1.5485-1.549847 1.5485zM5.67191 18.338h2.67742v-8.59H5.67191v8.59zM19.698675 3H4.329943C3.596095 3 3 3.581 3 4.298v15.403C3 20.418 3.596095 21 4.329943 21h15.368732c.73535 0 1.33395-.582 1.33395-1.299V4.298c0-.717-.5986-1.298-1.33395-1.298z"></path>
</svg>
</a> </li>
<li>
<a id="ga-aebed9" target="_blank" title="Instagram" href="https://www.instagram.com/udacity/">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" alt="Instagram">
<g id="icon-social" fill="#000000" fill-rule="evenodd">
<path d="M12.05987 5.449593c2.152093 0 2.406987.008176 3.25687.04688.78583.0358 1.212596.16686 1.496636.277005.376183.145943.644707.320308.926732.601815.282025.281507.45671.549538.60289.92503.11038.283518.24168.7095.277546 1.493854.038777.848354.046967 1.10278.046967 3.25092 0 2.14814-.00819 2.402565-.04696 3.250886-.03586.784387-.16716 1.210368-.27754 1.493887-.14618.375492-.32086.643522-.60289.92503-.28202.281506-.55055.45587-.92673.601782-.28404.110176-.7108.241237-1.49663.277036-.84975.038706-1.10465.04688-3.25687.04688-2.15222 0-2.40711-.008174-3.25687-.04688-.78583-.0358-1.21259-.16686-1.4966-.277036-.37621-.14591-.644733-.320276-.92676-.601783-.282024-.28151-.45671-.54954-.60289-.92503-.11038-.28352-.24168-.7095-.277545-1.49386-.038775-.84836-.046966-1.10278-.046966-3.25092 0-2.14814.00819-2.40257.046967-3.25089.035868-.78439.16717-1.21037.27755-1.49389.14618-.3755.320865-.64353.60289-.92503.282026-.28151.55055-.45587.926764-.60182.28401-.11015.71077-.24121 1.49657-.27701.849914-.038708 1.10481-.04688 3.2569-.04688m0-1.449597c-2.18895 0-2.46339.00926-3.323064.048412-.85791.03909-1.44378.17507-1.95648.37396-.53001.205594-.97949.480682-1.42756.92793-.448075.44725-.72367.895906-.929645 1.42494-.19926.51176-.33549 1.096553-.37465 1.95289C4.00925 9.586193 4 9.860163 4 12.045093s.009246 2.4589.04847 3.31696c.03916.85634.17539 1.44113.374648 1.95289.205975.529006.48157.97769.929643 1.42494.44808.44725.89756.72234 1.42757.927937.5127.19889 1.09857.33487 1.95649.37396.85968.03915 1.13412.04838 3.32307.04838s2.46343-.00923 3.32307-.04838c.857914-.03909 1.443784-.17507 1.956484-.37396.530008-.2056.97949-.48069 1.42756-.92794s.72367-.89591.929645-1.42494c.19926-.51176.335487-1.09655.37465-1.95289.039225-.85806.048503-1.13203.048503-3.31696 0-2.18493-.009276-2.4589-.0485-3.31696-.03916-.85634-.17539-1.44113-.374646-1.95289-.20598-.52904-.48157-.97769-.929644-1.42494-.44807-.44725-.897554-.72234-1.42756-.92794-.5127-.19889-1.09857-.33487-1.956485-.37396C14.523295 4.00926 14.24882 4 12.05987 4"></path>
<path d="M12.06243 7.916348c-2.285827 0-4.138874 1.849643-4.138874 4.13127 0 2.28163 1.853047 4.131272 4.138874 4.131272 2.285826 0 4.138873-1.849643 4.138873-4.13127 0-2.28163-1.853047-4.131272-4.138873-4.131272zm0 6.81298c-1.483775 0-2.686645-1.20066-2.686645-2.68171 0-1.481048 1.20287-2.681708 2.686645-2.681708 1.483775 0 2.686644 1.20066 2.686644 2.68171 0 1.481048-1.20287 2.681708-2.686644 2.681708zm5.269565-6.976198c0 .533185-.433003.965425-.96717.965425-.53417 0-.967205-.43224-.967205-.965426 0-.53319.433036-.9654.967204-.9654s.96717.43221.96717.96539"></path>
</g>
</svg>
</a> </li>
<li>
<a id="ga-daa725" target="_blank" title="Google +" href="https://plus.google.com/+Udacity/posts">
<svg xmlns="http://www.w3.org/2000/svg" width="31" height="24" viewBox="0 0 31 24" alt="Google +">
<path id="icon-social" fill="#000000" fill-rule="evenodd" d="M25.590768 10.61339V7.82461h-1.99565v2.78878H20.72138v1.991985h2.873737v2.868458h1.99565v-2.868458h2.793912V10.61339h-2.793913zm-14.528338-.15936v3.187177s3.09757-.004143 4.35882-.004143c-.68299 2.066166-1.744997 3.19132-4.35882 3.19132-2.645196 0-4.709737-2.14043-4.709737-4.780765 0-2.640338 2.06454-4.780766 4.709737-4.780766 1.398552 0 2.301783.490666 3.130298 1.174554.66314-.661977.607795-.756318 2.295078-2.346798C15.055488 4.793288 13.151796 4 11.06243 4 6.609653 4 3 7.603023 3 12.04762c0 4.444516 3.609653 8.047618 8.06243 8.047618 6.655655 0 8.28243-5.784724 7.743125-9.641207H11.06243z"></path>
</svg>
</a> </li>
</ul>
</div>
</section>
<section class="text-center">
<p class="micro mb-half">"Nanodegree" is a registered trademark of Udacity. <span>© 2011–2017 Udacity, Inc.</span></p>
<p class="micro legible center mb-0">Udacity is not an accredited university and we don't confer degrees.</p>
</section>
<div id="chat">
<div style="display: none;">
<a href="https://www.udacity.com/#" onclick="return hideChatWindow(event)">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 8">
<path d="M1.41 0l-1.41 1.41.72.72 1.78 1.81-1.78 1.78-.72.69 1.41 1.44.72-.72 1.81-1.81 1.78 1.81.69.72 1.44-1.44-.72-.69-1.81-1.78 1.81-1.81.72-.72-1.44-1.41-.69.72-1.78 1.78-1.81-1.78-.72-.72z"></path>
</svg>
</a>
<app><div id="rupertChatWrapper"> <div id="chatview" data-is="chat-view"><div class="view chat-body-view"> </div> <send-view> <div id="powered-by"> <a href="http://www.passage.ai/?utm_source=poweredbypassageai"> Powered by <svg id="Logo" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 936 220"><defs></defs><title>Passage AI Wordmark</title><g id="Horizontal_Lock_Up_Black" data-name="Horizontal Lock Up Black" class="cls-1"><g id="Passage_AI" data-name="Passage AI"><path class="cls-2" d="M14.37,125.17v54.6H.37v-140h38c27,0,47.4,14.8,47.4,42,0,27.6-21.2,43.4-49.2,43.4Zm0-12.6h22.4c20.2,0,34.8-11.4,34.8-30.8,0-18-14-29.4-33.8-29.4H14.37Z"></path><path class="cls-2" d="M164.77,162.38c-15.4,12.6-28.8,19.2-42.4,19.2-16.4,0-29.2-9.8-29.2-26,0-17.8,13.4-33,71.6-34.2V119c0-18.2-9.2-27.8-25.2-27.8-11.4,0-23.2,4.4-36.2,14.4l-.4-.2,2.8-15.2c9.6-6.4,21-11.2,35.6-11.2C164,79,178,92.6,178,118.2v59.4l-13.2,3.6Zm0-9v-22.8c-49,2.2-58.4,13.4-58.4,24.4,0,9.6,8,15.2,18.4,15.2C134.57,170.17,146.77,165.57,164.77,153.38Z"></path><path class="cls-2" d="M237.17,182a65.13,65.13,0,0,1-39.4-13l-2.6-16.2.4-.4c12.2,10.6,27,17.8,42.8,17.8,13.8,0,24-6.8,24-16,0-9.8-7.4-13.6-28.6-19-21-5.4-34.6-11.6-34.6-28.6,0-16.4,15.6-27.8,36.8-27.8,13.2,0,24.6,4.8,32.6,9.6v14.2l-.6.2c-9-6.4-21.2-12-33.4-12-13,0-22.6,5.8-22.6,14.6,0,9.4,7.8,13,28.2,18.4,22.2,5.6,35,12,35,29.6C275.17,170,258.77,182,237.17,182Z"></path><path class="cls-2" d="M331.57,182a65.13,65.13,0,0,1-39.4-13l-2.6-16.2.4-.4c12.2,10.6,27,17.8,42.8,17.8,13.8,0,24-6.8,24-16,0-9.8-7.4-13.6-28.6-19-21-5.4-34.6-11.6-34.6-28.6,0-16.4,15.6-27.8,36.8-27.8,13.2,0,24.6,4.8,32.6,9.6v14.2l-.6.2c-9-6.4-21.2-12-33.4-12-13,0-22.6,5.8-22.6,14.6,0,9.4,7.8,13,28.2,18.4,22.2,5.6,35,12,35,29.6C369.57,170,353.17,182,331.57,182Z"></path><path class="cls-2" d="M458.37,162.38c-15.4,12.6-28.8,19.2-42.4,19.2-16.4,0-29.2-9.8-29.2-26,0-17.8,13.4-33,71.6-34.2V119c0-18.2-9.2-27.8-25.2-27.8-11.4,0-23.2,4.4-36.2,14.4l-.4-.2,2.8-15.2C409,83.8,420.37,79,435,79c22.6,0,36.6,13.6,36.6,39.2v59.4l-13.2,3.6Zm0-9v-22.8c-49,2.2-58.4,13.4-58.4,24.4,0,9.6,8,15.2,18.4,15.2C428.17,170.17,440.37,165.57,458.37,153.38Z"></path><path class="cls-2" d="M497.37,209.17l-3.2-15,.4-.4c14.2,8.2,27.4,12.4,41.8,12.4,20,0,36.2-12.4,36.2-36.2v-10.2c-11.6,11.4-23.2,17.6-37.6,17.6-26,0-44.8-19.8-44.8-47,0-30.6,24.2-51,52.2-51,12,0,21.8,3.6,31.8,9.4l9.2-7.8h2.4v89c0,31.2-20.6,48.4-50,48.4A85.66,85.66,0,0,1,497.37,209.17Zm75.2-59V100c-9.8-6-19.2-9.2-30-9.2a38.5,38.5,0,0,0-39,38q0,.4,0,.8c0,21.6,14.8,36.2,35,36.2C550.37,165.77,561,160.58,572.57,150.17Z"></path><path class="cls-2" d="M656,182c-30.2,0-50.4-20.2-50.4-51.8,0-27.8,19.4-52,47.6-52,29.6,0,44.6,24.2,44.6,50.8,0,2-.2,4.8-.4,6.8H619.2c2.4,22,17.4,34,38.2,34,13,0,26-5.4,36.4-12.2l.4.2-4.8,14.8C679.77,178.17,669.57,182,656,182Zm-37.2-56.4h65.6c-1-20.2-11.8-35.6-31.8-35.6-19,0-32.43,16-33.83,35.58Z"></path><path class="cls-2" d="M868,141.58H790l-17.4,38.2H758l65.2-141h13.4l63.6,141H885Zm-38.6-87L795.57,129h66.8Z"></path><path class="cls-2" d="M921.36,39.78h14v140h-14Z"></path></g></g></svg> </a> </div> <div class="view send-view"> <div class="persistent-menu"> <span class="ham-menu"></span> </div> <form action="https://www.udacity.com/"> <input id="m" placeholder="Type a message and press enter…" autocomplete="off"> </form> </div> </send-view></div> </div></app>
</div>
<svg id="icon-chat-bubble-call-to-action" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 231 60">
<defs>
<style>.icon-chat-bubble-call-to-action-cls-1{fill:#182430;}.icon-chat-bubble-call-to-action-cls-2{font-size:14px;fill:#fff;font-family: "Open Sans", sans-serif;}.icon-chat-bubble-call-to-action-cls-3,.icon-chat-bubble-call-to-action-cls-4{fill:none;stroke:#fff;stroke-miterlimit:10;stroke-width:2px;}.icon-chat-bubble-call-to-action-cls-3{stroke-linecap:round;}</style>
<filter id="dropshadow" height="130%">
<fegaussianblur in="SourceAlpha" stdDeviation="3"></fegaussianblur> <!-- stdDeviation is how much to blur -->
<feoffset dx="2" dy="2" result="offsetblur"></feoffset> <!-- how much to offset -->
<fecomponenttransfer xmlns="http://www.w3.org/2000/svg">
<fefunca type="linear" slope="0.2"></fefunca>
</fecomponenttransfer>
<femerge>
<femergenode></femergenode> <!-- this contains the offset blurred image -->
<femergenode in="SourceGraphic"></femergenode> <!-- this contains the element that the filter is applied to -->
</femerge>
</filter>
</defs>
<title>rupertbot-icon-chat-bubble-call-to-action</title>
<rect class="icon-chat-bubble-call-to-action-cls-1" x="0.5" y="0.5" width="230" height="59" rx="29.5" ry="29.5" style="filter:url(#dropshadow)" onclick="return showChatWindow(event)"></rect>
<text class="icon-chat-bubble-call-to-action-cls-2" transform="translate(64 24.89)" onclick="return showChatWindow(event)">Need guidance?
<tspan x="0" y="18">Chat now!</tspan>
</text>
<circle class="icon-chat-bubble-call-to-action-close-background" cx="0" cy="0" r="12" onclick="return collapseCta()"></circle>
<path class="icon-chat-bubble-call-to-action-close" d="M1.41 0l-1.41 1.41.72.72 1.78 1.81-1.78 1.78-.72.69 1.41 1.44.72-.72 1.81-1.81 1.78 1.81.69.72 1.44-1.44-.72-.69-1.81-1.78 1.81-1.81.72-.72-1.44-1.41-.69.72-1.78 1.78-1.81-1.78-.72-.72z" onclick="return collapseCta()"></path>
<path id="Bubble2" class="icon-chat-bubble-call-to-action-cls-3" d="M30.45,22.48c6.37.22,11.45,4.49,11.45,9.73a8.07,8.07,0,0,1-.48,2.73M24.72,23.44C20.73,25,18,28.35,18,32.21a8.73,8.73,0,0,0,2.9,6.35,14.66,14.66,0,0,1-1,4.66.56.56,0,0,0,.64.75,11.68,11.68,0,0,0,5.32-2.62,14.36,14.36,0,0,0,4.11.6,13.63,13.63,0,0,0,7.75-2.32" onclick="return showChatWindow(event)"></path>
<path id="Bubble1" class="icon-chat-bubble-call-to-action-cls-4" d="M41.43,14c7.92,0,14.34,5.24,14.34,11.71a10.51,10.51,0,0,1-3.48,7.63A17.69,17.69,0,0,0,53.49,39a.67.67,0,0,1-.77.9,14,14,0,0,1-6.38-3.15,17.15,17.15,0,0,1-4.92.72c-7.92,0-14.34-5.24-14.34-11.71S33.51,14,41.43,14Z" onclick="return showChatWindow(event)"></path>
</svg>
<!-- <script src="./site-files/tars.js"></script> -->
</div></div>
</footer>
<!-- <script type="text/javascript">
if (!window.jQuery) {
var s = document.createElement('script');
s.src = '/public/vendor/jquery-1.12.2.min.js';
document.body.append(s);
}
</script> -->
<!-- <script src="./site-files/application-3c0daab4418081cc52af87af99e7aab36d3a56c25bf6ddb8a0243fe313c57fc2.js"></script>
<script src="./site-files/homepage-639c9f3c7fcbc41137bc809ed0d5b7a6c1e9784b6a96b7b60cdd1eb68f55410c.js"></script>
<script src="./site-files/jquery.flexslider-7eb6c759d6bd6ea609d6722b045e375e714c97917f8e0b3e96190fa56c8bff54.js"></script>
<script src="./site-files/animations-fd833afdfaf010e8d8047e394fd266c999a6fffa5113fda37db034e2899c9e04.js"></script> -->
</div>
<div class="remodal-overlay remodal-is-closed" style="display: none;"></div><div class="remodal-wrapper remodal-is-closed" style="display: none;"><div class="remodal modal-join-udacity remodal-is-initialized remodal-is-closed" data-remodal-id="join-udacity" tabindex="-1">
<div data-remodal-action="close" class="remodal-close"></div>
<img alt="Udacity" width="48" class="mb-1" src="./site-files/logo-mark-4bfb321aaa8c5a67d777bdf90289552f0a914f93b34ee47c2af462ee015077f8.svg">
<h3 class="mb-half">Join the Exclusive Udacity List</h3>
<p class="small">By joining the exclusive Udacity email list you will be notified of latest, cutting-edge offerings, news, and membership deals.</p>
<form id="join-udacity-form">
<div id="error_message"></div>
<label for="email">Email Address</label>
<input name="email" id="email" class="inline" type="email" placeholder="Enter your email" autocomplete="email" autocorrect="off" autocapitalize="off" tabindex="1" inputmode="email" required="">
<button type="submit" class="button--primary sm inline">Submit</button>
</form>
</div></div><div class="remodal-wrapper remodal-is-closed" style="display: none;"><div class="remodal modal-join-udacity remodal-is-initialized remodal-is-closed" data-remodal-id="join-udacity-success" tabindex="-1">
<div data-remodal-action="close" class="remodal-close white"></div>
<img alt="Udacity" width="48" class="mb-1" src="./site-files/logo-mark-4bfb321aaa8c5a67d777bdf90289552f0a914f93b34ee47c2af462ee015077f8.svg">
<h3 class="mb-half">Congrats! You're on the list.</h3>
<p class="small">By joining the exclusive Udacity email list you will be notified of latest, cutting-edge offerings, news, and membership deals.</p>
</div></div><div class="remodal-wrapper remodal-is-closed" style="display: none;"><div class="remodal geo-redirect-modal remodal-is-initialized remodal-is-closed" data-remodal-id="geo-redirect" tabindex="-1">
<div data-remodal-action="close" class="remodal-close"></div>
<img src="./site-files/icon-globe-e82eae5d45465aba4fbe4bb746905ce55dc3324f310b79c60e4a20089057d347.svg" alt="Icon globe">
<h3>
<span data-country="CN">Udacity 现已提供中文版本!</span>
<span data-country="BR">A Udacity tem uma página em português para você!</span>
<span data-country="IN">There's a local version of Udacity for you!</span>
<span data-country="DE">Sprechen Sie Deutsch?</span>
</h3>
<p data-country="DE">
Besuchen Sie <strong>de.udacity.com</strong> und entdecken Sie lokale Angebote, unsere Partnerunternehmen und
Udacitys deutschsprachigen Blog.
</p>
<div class="save-preference">
<label for="saveRedirectPreference">
<input type="checkbox" id="saveRedirectPreference">
<span data-country="CN">将此设置为 Udacity 默认主页</span>
<span data-country="BR">Tornar esta a página padrão da Udacity</span>
<span data-country="IN">Always make this my Udacity homepage</span>
</label>
</div>
<a href="https://www.udacity.com/#" class="button button--primary mb-1" id="localLink">
<span data-country="CN">前往优达学城中文网站</span>
<span data-country="BR">Ir para a página brasileira</span>
<span data-country="IN">Go to Indian Site</span>
<span class="geo-redirect-flag" data-country="DE"><img src="./site-files/icon-flag-de-deedb1a7a695700236cb6ef4204ddbede5d197dab9b47716c87a0b4d5d9fc325.svg" alt="Icon flag de"></span>
<span class="geo-redirect-cta" data-country="DE">Zu de.udacity.com</span>