-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
1184 lines (1159 loc) · 58 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>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<link rel="stylesheet" href="https://unpkg.com/flickity@2/dist/flickity.min.css">
<link rel="stylesheet" href="css/style.css">
<title>Template</title>
</head>
<body>
<div class="wrapper">
<!-- Header -->
<header id="header" class="header">
<!-- Logo -->
<div class="main_logo">
<img src="img/logo.svg" class="logo_img" alt="">
</div>
<!-- Navbar for pc -->
<nav class="navbar navbar-expand-lg navbar-light bg-light for__pc">
<div class="container-fluid">
<a href="" class="navbar-brand"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
Academics
</a>
<div class="dropdown-menu one" aria-labelledby="navbarDropdown">
<div class="row">
<div class="col-md-6 col-lg-6 first__column">
<a href="" class="dropdown__heading">Master Programs</a>
<ul class="dropdown__ul_link">
<li class="dropdown__li_link">
<a href="" class="dropdown__li_inner_link">Johnson Cornell Tech MBA</a>
</li>
<li class="dropdown__li_link"><a href="" class="dropdown__li_inner_link">Master of
Engineering in Computer Science</a></li>
<li class="dropdown__li_link"><a href="" class="dropdown__li_inner_link">Master in
Electrical and Computer Engineering</a></li>
<li class="dropdown__li_link"><a href="" class="dropdown__li_inner_link">Master in
Operations Research and Information Engineering</a></li>
<li class="dropdown__li_link"><a href="" class="dropdown__li_inner_link">Technion-Cornell
Dual Master's Degrees in Connective Media</a></li>
<li class="dropdown__li_link"><a href="" class="dropdown__li_inner_link">Technion-Cornell
Dual Master's Degrees in Health Tech</a></li>
</ul>
<h4 class="dropdown__heading">PHD & POST DOCTORAL PROGRAMS</h4>
<ul class="dropdown__ul_link">
<li class="dropdown__li_link">
<a href="" class="dropdown__li_inner_link">PhD Studies</a>
</li>
<li class="dropdown__li_link"><a href="" class="dropdown__li_inner_link">Runway Startup
Postdocs</a></li>
</ul>
</div>
<div class="col-md-6 col-lg-6 second__column">
<a href="" class="dropdown__heading">Studio</a>
<div style="min-width:387px;margin-bottom:17px;">
<p>Studio is comprised of intensely immersive, interdisciplinary team experiences that provide
all
of our Master’s students with hands on, real world skills that challenge and expand their
roles
in their chosen fields.</p>
</div>
<ul class="dropdown__ul_link">
<li class="dropdown__li_link">
<a href="" class="dropdown__li_inner_link">Overview</a>
</li>
<li class="dropdown__li_link">
<a href="" class="dropdown__li_inner_link"> Curriculum</a>
</li>
<li class="dropdown__li_link">
<a href="" class="dropdown__li_inner_link"> Studio Practice</a>
</li>
<li class="dropdown__li_link">
<a href="" class="dropdown__li_inner_link"> Real World Outcomes</a>
</li>
</ul>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
Admissions
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item dropdown__li_inner_link" href="#">Admissions Events</a>
<a class="dropdown-item dropdown__li_inner_link" href="#">Johnson Cornell Tech MBA Application</a>
<a class="dropdown-item dropdown__li_inner_link" href="#">Master of Engineering Application</a>
<a class="dropdown-item dropdown__li_inner_link" href="#">Master of Laws (LLM) Application</a>
<a class="dropdown-item dropdown__li_inner_link" href="#">Technion-Cornell Dual Degree Application</a>
<a class="dropdown-item dropdown__li_inner_link" href="#">Tuition & Fees</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
Impact
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item dropdown__li_inner_link" href="#">Alumni</a>
<a class="dropdown-item dropdown__li_inner_link" href="#">K-12 Initiative</a>
<a class="dropdown-item dropdown__li_inner_link" href="#">Community</a>
<a class="dropdown-item dropdown__li_inner_link" href="#">Runway Startups</a>
<a class="dropdown-item dropdown__li_inner_link" href="#">Women in Technology and Entrepreneurship in
New York</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Research</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">People</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Campus</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">
Jacob institute
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown" style="width: 295px;padding:30px;">
<p>The Jacobs Technion-Cornell Institute is a place for dynamic experimentation,
where the boundaries
of academia are expanded.</p>
<a class="dropdown__li_inner_link" href="#">Learn more</a>
</div>
</li>
<li class="nav-item">
<button class="btn btn-sm btn-primary nav-btn">Visit</button>
</li>
<!-- Search icon flip -->
<li class="nav-item">
<i class="fas fa-search fa-flip-horizontal"></i>
</li>
</ul>
</div>
</div>
</nav>
<!-- Navbar for mob -->
<a class="menu-toggle rounded for__mob" href="#">
<i class="fas fa-bars"></i>
</a>
<nav class="navbar navbar-expand-lg navbar-light bg-light" id="sidebar-wrapper">
<ul class="sidebar-nav">
<li class="sidebar-brand">
<a class="js-scroll-trigger" href="#page-top">CORNELL TECH</a>
</li>
<li class="sidebar-nav-item nav-item dropdown">
<a class="js-scroll-trigger nav-link" href="#collapse1" id="navbarDropdown" role="button"
data-toggle="collapse" aria-controls="collapse1" aria-expanded="true">ACADEMICS <i
class="fas fa-sort-down float-right"></i></a>
<div class="dropdown-divider"></div>
<ul class="collapse sidebar__submenu" id="collapse1" data-parent="#sidebar-wrapper">
<li class="nav-item">
<a class="js-scroll-trigger" href="">Admin</a>
</li>
<li class="nav-item">
<a class="js-scroll-trigger" href="">Admin</a>
</li>
<li class="nav-item">
<a class="js-scroll-trigger" href="">Admin</a>
</li>
<li class="nav-item">
<a class="js-scroll-trigger" href="">Admin</a>
</li>
</ul>
</li>
<li class="sidebar-nav-item nav-item dropdown">
<a class="js-scroll-trigger nav-link" href="#collapse2" id="navbarDropdown" role="button"
data-toggle="collapse" aria-controls="collapse2" aria-expanded="true">ADMISSIONS <i
class="fas fa-sort-down float-right"></i></a>
<div class="dropdown-divider"></div>
<ul class="collapse sidebar__submenu" id="collapse2" data-parent="#sidebar-wrapper">
<li class="nav-item">
<a class="js-scroll-trigger" href="">Admission Events</a>
</li>
<li class="nav-item">
<a class="js-scroll-trigger" href="">MBA Application</a>
</li>
<li class="nav-item">
<a class="js-scroll-trigger" href="">Master of Laws Application</a>
</li>
<li class="nav-item">
<a class="js-scroll-trigger" href="">Degree Application</a>
</li>
<li class="nav-item">
<a class="js-scroll-trigger" href="">Tution Fees</a>
</li>
</ul>
</li>
<li class="sidebar-nav-item nav-item dropdown">
<a class="js-scroll-trigger nav-link" href="#collapse3" id="navbarDropdown" role="button"
data-toggle="collapse" aria-controls="collapse3" aria-expanded="true">IMPACT <i
class="fas fa-sort-down float-right"></i></a>
<div class="dropdown-divider"></div>
<ul class="collapse sidebar__submenu" id="collapse3" data-parent="#sidebar-wrapper">
<li class="nav-item">
<a class="js-scroll-trigger" href="">Alumni</a>
</li>
<li class="nav-item">
<a class="js-scroll-trigger" href="">K12 initiative</a>
</li>
<li class="nav-item">
<a class="js-scroll-trigger" href="">Community</a>
</li>
<li class="nav-item">
<a class="js-scroll-trigger" href="">Runway Startups</a>
</li>
<li class="nav-item">
<a class="js-scroll-trigger" href="">Women in Technology and Entrepreneurship in New York</a>
</li>
</ul>
</li>
<li class="sidebar-nav-item nav-item dropdown">
<a class="js-scroll-trigger nav-link" href="#collapse4" id="navbarDropdown" role="button"
data-toggle="collapse" aria-controls="collapse4" aria-expanded="true">RESEARCH <i
class="fas fa-sort-down float-right"></i></a>
<div class="dropdown-divider"></div>
<ul class="collapse sidebar__submenu" id="collapse4" data-parent="#sidebar-wrapper">
<li class="nav-item">
<a class="js-scroll-trigger" href="">HCI</a>
</li>
<li class="nav-item">
<a class="js-scroll-trigger" href="">Security & Privacy</a>
</li>
<li class="nav-item">
<a class="js-scroll-trigger" href="">Artificial intelligence and Robotics</a>
</li>
<li class="nav-item">
<a class="js-scroll-trigger" href="">Data & Modeling</a>
</li>
<li class="nav-item">
<a class="js-scroll-trigger" href="">Laws and Policy</a>
</li>
</ul>
</li>
<li class="sidebar-nav-item nav-item dropdown">
<a class="js-scroll-trigger nav-link" href="#collapse5" id="navbarDropdown" role="button"
data-toggle="collapse" aria-controls="collapse5" aria-expanded="true">PEOPLE <i
class="fas fa-sort-down float-right"></i></a>
<div class="dropdown-divider"></div>
<ul class="collapse sidebar__submenu" id="collapse5" data-parent="#sidebar-wrapper">
<li class="nav-item">
<a class="js-scroll-trigger" href="">Faculty</a>
</li>
<li class="nav-item">
<a class="js-scroll-trigger" href="">practitioners & Researches</a>
</li>
<li class="nav-item">
<a class="js-scroll-trigger" href="">phD students</a>
</li>
<li class="nav-item">
<a class="js-scroll-trigger" href="">Leadership</a>
</li>
<li class="nav-item">
<a class="js-scroll-trigger" href="">Board & Overseers</a>
</li>
</ul>
</li>
<li class="sidebar-nav-item nav-item dropdown">
<a class="js-scroll-trigger nav-link" href="#collapse6" id="navbarDropdown" role="button"
data-toggle="collapse" aria-controls="collapse6" aria-expanded="true">CAMPUS <i
class="fas fa-sort-down float-right"></i></a>
<div class="dropdown-divider"></div>
<ul class="collapse sidebar__submenu" id="collapse6" data-parent="#sidebar-wrapper">
<li class="nav-item">
<a class="js-scroll-trigger" href="">Emma and Georgia Bloomberg Center</a>
</li>
<li class="nav-item">
<a class="js-scroll-trigger" href="">Tata Innovation Center</a>
</li>
<li class="nav-item">
<a class="js-scroll-trigger" href="">The House at cornell Tech</a>
</li>
</ul>
</li>
<li class="sidebar-nav-item">
<a class="js-scroll-trigger" href="#contact">JACOBS INSTITUTE</a>
</li>
<li class="sidebar-nav-item">
<a class="js-scroll-trigger" href="#contact">Connect with us</a>
<ul class="sidebar-inner-link">
<li>
<a href="">
<span class="fab fa-facebook-f fa-lg"></span>
</a>
</li>
<li>
<a href="">
<span class="fab fa-twitter fa-lg"></span>
</a>
</li>
<li>
<a href="">
<span class="fab fa-instagram fa-lg"></span>
</a>
</li>
<li>
<a href="">
<span class="fab fa-linkedin-in fa-lg"></span>
</a>
</li>
</ul>
</li>
</ul>
</nav>
</header>
<!-- Main -->
<section id="main" class="main">
<div class="main__wrapper">
<div class="main__image" style="opacity:1;">
<img src="img/header_img.jpg" class="main__header_img" alt="">
</div>
<div class="main__video" style="opacity: 0;">
<iframe aria-hidden="true" data-autoplay="" data-keepplaying="" width="640" height="360"
src="https://www.youtube.com/embed/n8Y34Axq2EM?feature=oembed&enablejsapi=1&autoplay=1&loop=1&controls=0&rel=0&wmode=transparent&showinfo=0&mute=1&autohide=0&modestbranding=1&playlist=n8Y34Axq2EM"
title="Video" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen=""></iframe>
</div>
</div>
<div class="container">
<div class="main__inner_container">
<h1 class="main__inner_headline">Graduate education and research for the digital age</h1>
<p class="main__inner_description">Integrating technology, business, law and design in
service of economic
impact and societal good.</p>
</div>
<span class="main__inner_trigger fas fa-angle-down fa-xs"></span>
</div>
</section>
<!-- Main content -->
<main id="main__content">
<!-- News card -->
<section class="news__card">
<div class="news__card_wrapper">
<div class="news__card_container">
<div class="news__card_block">
<!-- Polygonal Grids -->
<!------------------------>
<!-- green half -->
<!------------------------>
<div class="news__card_grid">
<div class="news__card_cell one">
<figure
class="js-wrap image image--cover card-fourth__background card-fourth__background-image image--loaded">
<img src="img/flick_img1.jpg" class="image__img" alt="">
</figure>
<div class="card-fourth__background card-fourth__background-color"></div>
<div class="card-fourth__content">
<div class="card-fourth__cat">
<h3 class="label-text"><a href="https://tech.cornell.edu/news/category/product-studio/"
class="button button--black card-fourth__label">Product Studio</a></h3>
<h3 class="label-text"><a href="https://tech.cornell.edu/news/category/students/"
class="button button--black card-fourth__label">Students</a></h3>
</div>
<div class="news__card_inner_two green__half">
<h3>
<a href="">3 Cornell Tech Professors Receive Google Faculty Research Awards</a>
</h3>
<h3>
<a href="" style="font-size: .875rem;
line-height: 1.71429;
letter-spacing: .10714em;">Read The Story <span
class="fas fa-long-arrow-alt-right"></span></a>
</h3>
</div>
</div>
</div>
<div class="news__card_cell">
<figure
class="js-wrap image image--cover card-fourth__background card-fourth__background-image image--loaded">
<img src="img/flick_img1.jpg" class="image__img" alt="">
</figure>
<div class="card-fourth__background card-fourth__background-color"></div>
<div class="card-fourth__content">
<div class="card-fourth__cat">
<h3 class="label-text"><a href="https://tech.cornell.edu/news/category/product-studio/"
class="button button--black card-fourth__label">Product Studio</a></h3>
<h3 class="label-text"><a href="https://tech.cornell.edu/news/category/students/"
class="button button--black card-fourth__label">Students</a></h3>
</div>
<div class="news__card_inner_two green__half">
<h3>
<a href="">3 Cornell Tech Professors Receive Google Faculty Research Awards</a>
</h3>
<h3>
<a href="" style="font-size: .875rem;
line-height: 1.71429;
letter-spacing: .10714em;">Read The Story <span
class="fas fa-long-arrow-alt-right"></span></a>
</h3>
</div>
</div>
</div>
<div class="news__card_cell one">
<figure
class="js-wrap image image--cover card-fourth__background card-fourth__background-image image--loaded">
<img src="img/flick_img1.jpg" class="image__img" alt="">
</figure>
<div class="card-fourth__background card-fourth__background-color"></div>
<div class="card-fourth__content">
<div class="card-fourth__cat">
<h3 class="label-text"><a href="https://tech.cornell.edu/news/category/product-studio/"
class="button button--black card-fourth__label">Product Studio</a></h3>
<h3 class="label-text"><a href="https://tech.cornell.edu/news/category/students/"
class="button button--black card-fourth__label">Students</a></h3>
</div>
<div class="news__card_inner_two green__half">
<h3>
<a href="">3 Cornell Tech Professors Receive Google Faculty Research Awards</a>
</h3>
<h3>
<a href="" style="font-size: .875rem;
line-height: 1.71429;
letter-spacing: .10714em;">Read The Story <span
class="fas fa-long-arrow-alt-right"></span></a>
</h3>
</div>
</div>
</div>
<div class="news__card_cell">
<figure
class="js-wrap image image--cover card-fourth__background card-fourth__background-image image--loaded">
<img src="img/flick_img1.jpg" class="image__img" alt="">
</figure>
<div class="card-fourth__background card-fourth__background-color"></div>
<div class="card-fourth__content">
<div class="card-fourth__cat">
<h3 class="label-text"><a href="https://tech.cornell.edu/news/category/product-studio/"
class="button button--black card-fourth__label">Product Studio</a></h3>
<h3 class="label-text"><a href="https://tech.cornell.edu/news/category/students/"
class="button button--black card-fourth__label">Students</a></h3>
</div>
<div class="news__card_inner_two green__half">
<h3>
<a href="">3 Cornell Tech Professors Receive Google Faculty Research Awards</a>
</h3>
<h3>
<a href="" style="font-size: .875rem;
line-height: 1.71429;
letter-spacing: .10714em;">Read The Story <span
class="fas fa-long-arrow-alt-right"></span></a>
</h3>
</div>
</div>
</div>
<div class="news__card_cell one">
<figure
class="js-wrap image image--cover card-fourth__background card-fourth__background-image image--loaded">
<img src="img/flick_img1.jpg" class="image__img" alt="">
</figure>
<div class="card-fourth__background card-fourth__background-color"></div>
<div class="card-fourth__content">
<div class="card-fourth__cat">
<h3 class="label-text"><a href="https://tech.cornell.edu/news/category/product-studio/"
class="button button--black card-fourth__label">Product Studio</a></h3>
<h3 class="label-text"><a href="https://tech.cornell.edu/news/category/students/"
class="button button--black card-fourth__label">Students</a></h3>
</div>
<div class="news__card_inner_two green__half">
<h3>
<a href="">3 Cornell Tech Professors Receive Google Faculty Research Awards</a>
</h3>
<h3>
<a href="" style="font-size: .875rem;
line-height: 1.71429;
letter-spacing: .10714em;">Read The Story <span
class="fas fa-long-arrow-alt-right"></span></a>
</h3>
</div>
</div>
</div>
<div class="news__card_cell">
<figure
class="js-wrap image image--cover card-fourth__background card-fourth__background-image image--loaded">
<img src="img/flick_img1.jpg" class="image__img" alt="">
</figure>
<div class="card-fourth__background card-fourth__background-color"></div>
<div class="card-fourth__content">
<div class="card-fourth__cat">
<h3 class="label-text"><a href="https://tech.cornell.edu/news/category/product-studio/"
class="button button--black card-fourth__label">Product Studio</a></h3>
<h3 class="label-text"><a href="https://tech.cornell.edu/news/category/students/"
class="button button--black card-fourth__label">Students</a></h3>
</div>
<div class="news__card_inner_two green__half">
<h3>
<a href="">3 Cornell Tech Professors Receive Google Faculty Research Awards</a>
</h3>
<h3>
<a href="" style="font-size: .875rem;
line-height: 1.71429;
letter-spacing: .10714em;">Read The Story <span
class="fas fa-long-arrow-alt-right"></span></a>
</h3>
</div>
</div>
</div>
</div>
<!------------------------>
<!-- End of green half -->
<!------------------------>
<!-- Home tags -->
<div class="home__tag home_tag_bottom_text">
<p>All <a href="">News</a> & <a href="">Programs</a></p>
</div>
</div>
</div>
</div>
</section>
<!-- Theme block -->
<section class="theme__block">
<div class="theme__block_container">
<h2 class="theme__block_tag">Exploration on a theme</h2>
<div class="row">
<div class="col-12 col-md-6 col-lg-6">
<ul class="theme__block_list">
<li class="theme__block_item is-toggle-active" data-tab="tab-horizontal-0" data-color="#fe502d"
data-target="#tab-horizontal-0">
<a href="#tab-horizontal-0" class="theme__block_link">
Socialire Impact
<span class="theme__header_line"></span>
</a>
</li>
<li class="theme__block_item" data-tab="tab-horizontal-1" data-color="#ffc72c"
data-target="#tab-horizontal-1">
<a href="#tab-horizontal-1" class="theme__block_link">
Research for the digital age
<span class="theme__header_line"></span>
</a>
</li>
<li class="theme__block_item" data-tab="tab-horizontal-2" data-color="#d4eb8e"
data-target="#tab-horizontal-2">
<a href="#tab-horizontal-2" class="theme__block_link">
inside the studio
<span class="theme__header_line"></span>
</a>
</li>
<li class="theme__block_item" data-tab="tab-horizontal-3" data-color="#0095f5"
data-target="#tab-horizontal-3">
<a href="#tab-horizontal-3" class="theme__block_link">
Entrepreneural mindset
<span class="theme__header_line"></span>
</a>
</li>
</ul>
</div>
<div class="col-12 col-md-6 col-lg-6">
<div class="theme__block_content">
<div class="theme__block_single_content tab-horizontal-0 is-content-active">
The digital age is making it easier, faster and cheaper to develop new products and services than ever
before. Cornell Tech is building a diverse environment of academics and practitioners who excel at
imagining, researching and building digitally-enabled products and services to directly address
societal and commercial needs, particularly in areas that both draw on and contribute to the vibrancy
of New York City.
</div>
<div class="theme__block_single_content tab-horizontal-1">
Cornell Tech's academic environment encourages tight integration across disciplines, couples
fundamental research with practice, and supports societal and commercial ventures alongside research
and education. In addition to world-class academic work, a distinguishing characteristic of our
research is that it engages deeply with external communities, organizations, and industry to address
real-world problems and contexts that amplify the direct societal and commercial impact of our
research.
</div>
<div class="theme__block_single_content tab-horizontal-2">
Advertising agencies, architecture firms and other creative organizations have long understood the
power of a culture in which ideas are shared and critiqued in an open and collaborative environment.
Seeing and discussing the work of your peers can inspire great work of your own. And getting
constructive feedback from people whose experience and instincts you trust can help you turn good
ideas into great ones. Cornell Tech's Studio culture ensures you'll get the coaching, collaboration
and camaraderie you need to thrive.
</div>
<div class="theme__block_single_content tab-horizontal-3">
Our programs and our organization combine the action-orientation of business and the reflective nature
of academia. We expect our academic programs to evolve and iterate rapidly, and our faculty and
students to pursue startup companies, social ventures, and high-impact partnerships with companies,
nonprofits and government agencies. An entrepreneurial mindset is important in any size digital-age
company or organization.
</div>
</div>
</div>
<div class="col-12 col-md-5 mt-4">
<div class="theme__block_content">
<div class="theme__block_single_content tab-horizontal-0 is-content-active">
<h2 class="theme__block_tag">News</h2>
<img src="img/tab1_img.jpg" class="img-fluid" alt="">
<div class="theme__block_content_text">
<a href="" class="theme__block_content_link">
<span class="text">How Cornell Tech Aims to Foster ‘the right kind of entrepreneurship'</span>
<span class="fas fa-arrow-right fa-xs"></span>
</a>
</div>
</div>
<div class="theme__block_single_content tab-horizontal-1">
<h2 class="theme__block_tag">News <span class="text-white">Jacobs institute</span></h2>
<img src="img/tab2_img.jpg" class="img-fluid" alt="">
<div class="theme__block_content_text">
<a href="" class="theme__block_content_link">
<span class="text">Video: Faculty Spotlight - Nicola Dell</span>
<span class="fas fa-arrow-right fa-xs"></span>
</a>
</div>
</div>
<div class="theme__block_single_content tab-horizontal-2">
<h2 class="theme__block_tag">News </h2>
<img src="img/tab3_img.jpg" class="img-fluid" alt="">
<div class="theme__block_content_text">
<a href="" class="theme__block_content_link">
<span class="text">Video: Learning to Build Tech Products</span>
<span class="fas fa-arrow-right fa-xs"></span>
</a>
</div>
</div>
<div class="theme__block_single_content tab-horizontal-3">
<h2 class="theme__block_tag">News </h2>
<img src="img/tab4_img.jpg" class="img-fluid" alt="">
<div class="theme__block_content_text">
<a href="" class="theme__block_content_link">
<span class="text">GitLinks Acquired by Infor</span>
<span class="fas fa-arrow-right fa-xs"></span>
</a>
</div>
</div>
</div>
</div>
<div class="col-12 col-md-3 mt-4">
<div class="theme__block_content">
<div class="theme__block_single_content tab-horizontal-0 is-content-active">
<h2 class="theme__block_tag">News</h2>
<div class="card">
<div class="card-body">
<div class="theme__block_card_inner_wrapper">
<img src="img/tab1_img.jpg" style="width:100%;min-height:440px;" alt="">
</div>
<div class="theme__block_card_content">
<div class="theme__block_card_inner">
<a href="">
<span class="theme__block_card_inner_text">HCI & Social Computing</span>
</a>
<span class="fas fa-long-arrow-alt-right"></span>
</div>
</div>
</div>
</div>
</div>
<div class="theme__block_single_content tab-horizontal-1">
<h2 class="theme__block_tag">News <span class="text-white">Jacobs institute</span></h2>
<div class="card">
<div class="card-body">
<div class="theme__block_card_inner_wrapper">
<img src="img/tab2_img.jpg" style="width:100%;min-height:440px;" alt="">
</div>
<div class="theme__block_card_content">
<div class="theme__block_card_inner">
<a href="">
<span class="theme__block_card_inner_text">HCI & Social Computing</span>
</a>
<span class="fas fa-long-arrow-alt-right"></span>
</div>
</div>
</div>
</div>
</div>
<div class="theme__block_single_content tab-horizontal-2">
<h2 class="theme__block_tag">News </h2>
<div class="card">
<div class="card-body">
<div class="theme__block_card_inner_wrapper">
<img src="img/tab3_img.jpg" style="width:100%;min-height:440px;" alt="">
</div>
<div class="theme__block_card_content">
<div class="theme__block_card_inner">
<a href="">
<span class="theme__block_card_inner_text">HCI & Social Computing</span>
</a>
<span class="fas fa-long-arrow-alt-right"></span>
</div>
</div>
</div>
</div>
</div>
<div class="theme__block_single_content tab-horizontal-3">
<h2 class="theme__block_tag">News </h2>
<div class="card">
<div class="card-body">
<div class="theme__block_card_inner_wrapper">
<img src="img/tab4_img.jpg" style="width:100%;min-height:440px;" alt="">
</div>
<div class="theme__block_card_content">
<div class="theme__block_card_inner">
<a href="">
<span class="theme__block_card_inner_text">HCI & Social Computing</span>
</a>
<span class="fas fa-long-arrow-alt-right"></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-12 col-md-3 mt-4">
<div class="theme__block_content">
<div class="theme__block_single_content tab-horizontal-0 is-content-active">
<h2 class="theme__block_tag">News</h2>
<div class="card">
<div class="card-body">
<div class="theme__block_card_inner_wrapper">
<img src="img/tab1_img.jpg" style="width:100%;min-height:440px;" alt="">
</div>
<div class="theme__block_card_content">
<div class="theme__block_card_inner">
<a href="">
<span class="theme__block_card_inner_text">WiTNY</span>
</a>
<span class="fas fa-long-arrow-alt-right"></span>
</div>
</div>
</div>
</div>
</div>
<div class="theme__block_single_content tab-horizontal-1">
<h2 class="theme__block_tag">News <span class="text-white">Jacobs institute</span></h2>
<div class="card">
<div class="card-body">
<div class="theme__block_card_inner_wrapper">
<img src="img/tab2_img.jpg" style="width:100%;min-height:440px;" alt="">
</div>
<div class="theme__block_card_content">
<div class="theme__block_card_inner">
<a href="">
<span class="theme__block_card_inner_text">WiTNY</span>
</a>
<span class="fas fa-long-arrow-alt-right"></span>
</div>
</div>
</div>
</div>
</div>
<div class="theme__block_single_content tab-horizontal-2">
<h2 class="theme__block_tag">News </h2>
<div class="card">
<div class="card-body">
<div class="theme__block_card_inner_wrapper">
<img src="img/tab3_img.jpg" style="width:100%;min-height:440px;" alt="">
</div>
<div class="theme__block_card_content">
<div class="theme__block_card_inner">
<a href="">
<span class="theme__block_card_inner_text">WiTNY</span>
</a>
<span class="fas fa-long-arrow-alt-right"></span>
</div>
</div>
</div>
</div>
</div>
<div class="theme__block_single_content tab-horizontal-3">
<h2 class="theme__block_tag">News </h2>
<div class="card">
<div class="card-body">
<div class="theme__block_card_inner_wrapper">
<img src="img/tab4_img.jpg" style="width:100%;min-height:440px;" alt="">
</div>
<div class="theme__block_card_content">
<div class="theme__block_card_inner">
<a href="">
<span class="theme__block_card_inner_text">WiTNY</span>
</a>
<span class="fas fa-long-arrow-alt-right"></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Alumini Spotlight -->
<section class="alumini__spotlight">
<div class="container">
<div class="row">
<!-- Round image -->
<div class="col-12 col-md-2">
<img src="img/alu_img.jpeg" class="rounded-circle" alt="">
</div>
<!-- Content top -->
<div class="col-12 col-md-6">
<h2 class="theme__block_tag">Alumini spotlight <span style="color:#000;">JILLIAN SUE</span></h2>
<div class="alumini__spotlight_content">
<p>"Challenging courses and support from esteemed faculty galvanized my ambition to solve problems in
the
health tech industry."</p>
</div>
<!-- Content bottom -->
<div class="row mt-5">
<div class="col-6 col-md-6">
<div class="alumini__blog_quality quality_one">
<p>14%</p>
<p class="alumini__description"> of Cornell Tech graduates went on to found startups </p>
</div>
<div class="alumini__blog_description">
</div>
</div>
<div class="col-6 col-md-5">
<div class="alumini__blog_quality">
<p>86%</p>
<p class="alumini__description"> of Cornell Tech graduates secured full-time jobs in tech </p>
</div>
<div class="alumini__blog_description">
</div>
</div>
</div>
</div>
<!-- Upcoming events -->
<div class="col-12 col-md-4">
<h2 class="theme__block_tag">Related <span style="color:#000;">PROGRAM</span></h2>
<img src="img/related_img.jpg" class="alumini__upcoming_event_image" alt="">
<div class="alumini__block_content_link">
<a href="" class="alumini__block_content_link_a">
<span class="text-left">Technion-Cornell Dual Master's Degrees in Health Tech</span>
<span class="fas fa-arrow-right fa-xs"></span>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Image Gallery -->
<section class="image__gallery">
<div class="image__gallery_inner">
<div class="image__gallery_header">
<!-- Skew section -->
<div class="image__gallery_header_inner">
<h2 class="image__gallery_heading">A CAMPUS WITHOUT PRECEDENT</h2>
<div class="image__gallery_description">
<p>The Cornell Tech campus is a place for discovery, alive with debate, both intellectually and
physically. The sustainable campus architecture isn’t just a backdrop for what is going on inside the
buildings. It is a model for innovation that inspires and keeps the campus’ high aspirations on track.
</p>
</div>
<div class="image__gallery_card_header">
<img src="img/gallery_small.jpg" class="image__gallery_img" alt="">
<div class="image__card_header">
Explore our new interactive 360° experience!
</div>
<button class="btn btn-sm btn-primary image__btn">Explore more</button>
</div>
</div>
</div>
<!-- flicity slider -->
<div class="image__gallery_carousel">
<div class="image__gallery_grid">
<div class="image__gallery_single_image">
<div class="image__gallery_single_wrapper">
<img src="img/gallery_img1.jpg" alt="">
</div>
<div class="image__gallery_inner_description">
<div class="image__gallery_count">
1 OF 5
</div>
<div class="image__gallery_count_description">
<p>The campus was purpose-built for the digital age to encourage innovation and promote creative
collisions.</p>
</div>
</div>
</div>
<div class="image__gallery_single_image">
<div class="image__gallery_single_wrapper">
<img src="img/gallery_img2.jpg" alt="">
</div>
<div class="image__gallery_inner_description">
<div class="image__gallery_count">
2 OF 5
</div>
<div class="image__gallery_count_description">
<p>The Emma and Georgina Bloomberg Center is the academic hub of the campus bringing students and
faculty together to collaborate across disciplines.</p>
</div>
</div>
</div>
<div class="image__gallery_single_image">
<div class="image__gallery_single_wrapper">
<img src="img/gallery_img3.jpg" alt="">
</div>
<div class="image__gallery_inner_description">
<div class="image__gallery_count">
3 OF 5
</div>
<div class="image__gallery_count_description">
<p>The House at Cornell Tech is the world’s first residential high-rise built to Passive House
standards, a rigorous set of sustainability measures projected to save of 882 tons of CO2 per
year.</p>
</div>
</div>
</div>
<div class="image__gallery_single_image">
<div class="image__gallery_single_wrapper">
<img src="img/gallery_img4.jpg" alt="">
</div>
<div class="image__gallery_inner_description">
<div class="image__gallery_count">
4 OF 5
</div>
<div class="image__gallery_count_description">
<p>The Tata Innovation Center is a corporate co-location building that houses a mix of cutting-edge
companies working alongside groundbreaking Cornell academic teams</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Institute -->
<section class="institute">
<div class="container">
<div class="institute__inner">
<!-- Overlay layer -->
<div class="institute__inner_header">
<div class="row">
<div class="col-12 col-md-2 col-lg-2">
<img src="img/logo_vertical.png" class="institute__inner_image_pc" alt="">
<img src="img/logo_horizontal.png" class="institute__inner_image_moblie" alt="">
</div>
<div class="col-12 col-md-8 offset-md-1">
<div class="row">
<div class="col-12">
<p class="institute__inner_des">
The Joan & Irwin Jacobs Technion- Cornell Institute embodies the academic partnership between
the Technion – Israel Institute of Technology and Cornell University on the Cornell Tech campus.
</p>
</div>
<div class="col-12">
<div class="institute__inner_grid pc-only">
<div class="institute__inner_grid_single">
<h2 class="theme__block_tag text-white">News</h2>
<img src="img/ins_img1.jpg" class="img-first" alt="">
<div class="institute__inner_title_one">
<a href="">
<p>OnSiteIQ Raises $2M in Seed Funding Round <span
class="fas fa-arrow-right fa-xs"></span></p>
</a>
</div>
</div>
<div class="institute__inner_grid_single">
<h2 class="theme__block_tag text-white">News</h2>
<img src="img/ins_img2.jpg" alt="">
<p class="text-white mt-2">Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
</div>
<div class="institute__inner_grid_single">
<h2 class="theme__block_tag text-white">News</h2>
<img src="img/ins_img3.jpg" alt="">
<p class="text-white mt-2">Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
</div>
<div class="institute__inner_grid_single">
<h2 class="theme__block_tag text-white">News</h2>
<img src="img/ins_img1.jpg" alt="">
<p class="text-white mt-2">Lorem ipsum dolor sit amet consectetur adipisicing elit.</p>
</div>