-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtemp.html
845 lines (823 loc) · 34.2 KB
/
temp.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="../css/bootstrap.min.css">
<link rel="stylesheet" href="../css/icofont.css">
<link rel="stylesheet" href="../css/global.css">
<link rel="stylesheet" href="../css/navbar.css">
<link rel="stylesheet" href="../css/header.css">
<link rel="stylesheet" href="../css/footer.css">
<link rel="stylesheet" href="../css/about.css">
<link rel="stylesheet" href="../css/global-mobile.css">
<link rel="stylesheet" href="../css/navbar-mobile.css">
<link rel="stylesheet" href="../css/header-mobile.css">
<link rel="stylesheet" href="../css/footer-mobile.css">
<link rel="stylesheet" href="../css/about-mobile.css">
<!-- Favicons -->
<link rel="icon" type="image/png" href="../assets/favicons/favicon-196x196.png" sizes="196x196" />
<link rel="icon" type="image/png" href="../assets/favicons/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/png" href="../assets/favicons/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="../assets/favicons/favicon-16x16.png" sizes="16x16" />
<link rel="icon" type="image/png" href="../assets/favicons/favicon-128.png" sizes="128x128" />
<!-- External JS -->
<script src="../js/jquery-3.2.1.min.js"></script>
<script src='https://api.mapbox.com/mapbox-gl-js/v0.42.0/mapbox-gl.js'></script>
<link href='https://api.mapbox.com/mapbox-gl-js/v0.42.0/mapbox-gl.css' rel='stylesheet' />
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-108713232-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-108713232-1');
</script>
<title>PWCS 2018 | About</title>
</head>
<body>
<!--
MARK: Navigation Buttons
-->
<div class="navigation row windows-hover-ne" id="abs-nav">
<!-- <div class="col-2 offset-2 right-txt no-padding font-size-30 mobile-only" id="nav-toggle">
<i class="icofont icofont-caret-right"></i>
</div>
<div class="col-4 offset-md-4 right-txt no-padding">
<a href="#">
<div class="button-box" id="reg">
REGISTER
</div>
</a>
</div> -->
<div class="col-6 right-txt no-padding">
<a href="./home-ch.html">
<div class="option" id="lang">
<i class="icofont icofont-globe"></i><br/>
<span class="hover-text">中文</span>
</div>
</a>
</div>
<div class="col-6 right-txt no-padding">
<div class="option" id="nav">
<i class="icofont icofont-navigation-menu"></i><br/>
<span class="hover-text">Menu</span>
</div>
</div>
</div>
<div class="navigation windows-hover-ne hide" id="close-nav">
<div class="col-6 offset-6 right-txt no-padding">
<div id="close">
<i class="icofont icofont-close"></i><br/>
</div>
</div>
</div>
<div class="navigation-mb hide" id="alt-nav">
<div class="row mobile-hide">
<div class="col-7">
<img src="../assets/images/banner.png" height="40px"/>
</div>
<div class="col-5 right-txt">
<div class="right-txt" style="float:right;">
<div class="nav-custom-item right-txt">
<a href="./home-ch.html">
<i class="icofont icofont-globe"></i>
简体中文
</a>
</div>
<div class="nav-custom-item right-txt" id="alt-nav-btn">
<i class="icofont icofont-navigation-menu"></i>
MENU
</div>
<div class="nav-custom-item right-txt register-item">
REGISTER
<i class="icofont icofont-dotted-right"></i>
</div>
</div>
</div>
</div>
<div class="container mobile-only">
<div class="row height-100">
<div class="col-5 register-item">
REGISTER
<i class="icofont icofont-dotted-right"></i>
</div>
<div class="col-3 no-padding right-txt">
<i class="icofont icofont-globe"></i>
中文
</div>
<div class="col-4 no-padding center-txt" id="m-alt-nav-btn">
<i class="icofont icofont-navigation-menu"></i>
Menu
</div>
</div>
</div>
</div>
<!--
MARK: Navigation Menu
-->
<div class="fixed-full" id="menu-container">
<div class="vertical-center mobile-hide">
<div class="row center-txt">
<div class="col-12">
<a href="#"><div class="navigation-action-btn">Register</div></a>
</div>
</div>
<div class="row">
<div class="col-12 col-md-12 row menu-items">
<div class="col-8 offset-2 col-md-12 offset-md-0 navigation-item" id="item-0"> <a href="./home.html">Home</a></div>
<div class="col-8 offset-2 col-md-12 offset-md-0 navigation-item active-item" id="item-4"> <a class="active-item" href="./about.html">About</a> <i class="icofont icofont-dotted-left"></i> </div>
<div class="col-8 offset-2 col-md-12 offset-md-0 navigation-item" id="item-1"> <a href="./panels.html">Panels</a> </div>
<div class="col-8 offset-2 col-md-12 offset-md-0 navigation-item" id="item-2"> <a href="./panels.html">Speakers</a> </div>
<div class="col-8 offset-2 col-md-12 offset-md-0 navigation-item" id="item-3"> <a href="./agenda.html">Agenda</a> </div>
<div class="col-8 offset-2 col-md-12 offset-md-0 navigation-item" id="item-3"> <a href="./past.html">Past</a> </div>
</div>
</div>
<div class="row center-txt">
<div class="col-4 offset-2 col-md-2 offset-md-2 center-txt">
<div class="nav-social-item center-txt">
<a href="https://www.hotmail.com">
<i class="icofont icofont-social-facebook"></i>
</a>
</div>
</div>
<div class="col-4 col-md-2 center-txt">
<div class="nav-social-item center-txt">
<a href="https://www.hotmail.com">
<i class="icofont icofont-social-wechat"></i>
</a>
</div>
</div>
<div class="col-4 offset-2 col-md-2 offset-md-0 center-txt">
<div class="nav-social-item center-txt">
<a href="https://www.hotmail.com">
<i class="icofont icofont-social-weibo"></i>
</a>
</div>
</div>
<div class="col-4 col-md-2 center-txt">
<div class="nav-social-item center-txt">
<a href="https://www.hotmail.com">
<i class="icofont icofont-email"></i>
</a>
</div>
</div>
</div>
</div>
<div class="verticl-center mobile-only">
<div class="row">
<div class="col-12 center-txt m-menu-title">
MENU
</div>
</div>
<div class="row">
<div class="col-12 col-md-12 row menu-items center-txt">
<div class="col-8 offset-2 col-md-12 offset-md-0 navigation-item" id="item-0"> <a href="./home.html">Home</a></div>
<div class="col-8 offset-2 col-md-12 offset-md-0 navigation-item active-item" id="item-4"> <a class="active-item" href="./about.html">About</a> <i class="icofont icofont-dotted-left"></i> </div>
<div class="col-8 offset-2 col-md-12 offset-md-0 navigation-item" id="item-1"> <a href="./panels.html">Panels</a> </div>
<div class="col-8 offset-2 col-md-12 offset-md-0 navigation-item" id="item-2"> <a href="./panels.html">Speakers</a> </div>
<div class="col-8 offset-2 col-md-12 offset-md-0 navigation-item" id="item-3"> <a href="./agenda.html">Agenda</a> </div>
<div class="col-8 offset-2 col-md-12 offset-md-0 navigation-item" id="item-3"> <a href="./past.html">Past</a> </div>
<div class="col-8 offset-2 col-md-12 offset-md-0 navigation-item" id="item-6"> <a href="./past.html">Register</a> </div>
</div>
</div>
<div class="row hide" id="m-close-nav">
<div class="col-12 center-txt">
<div class="m-close-btn verticl-center">
<i class="icofont icofont-close"></i>
</div>
</div>
</div>
</div>
</div>
<!--
MARK: Header
<div class="col-8 offset-2 col-md-12 offset-md-0 navigation-item" id="item-0"> <a href="./home.html">Home</a></div>
<div class="col-8 offset-2 col-md-12 offset-md-0 navigation-item active-item" id="item-4"> <a class="active-item" href="./about.html">About</a> <i class="icofont icofont-dotted-left"></i> </div>
<div class="col-8 offset-2 col-md-12 offset-md-0 navigation-item" id="item-1"> <a href="./panels.html">Panels</a> </div>
<div class="col-8 offset-2 col-md-12 offset-md-0 navigation-item" id="item-2"> <a href="./panels.html">Speakers</a> </div>
<div class="col-8 offset-2 col-md-12 offset-md-0 navigation-item" id="item-3"> <a href="./agenda.html">Agenda</a> </div>
<div class="col-8 offset-2 col-md-12 offset-md-0 navigation-item" id="item-3"> <a href="./past.html">Past</a> </div>
-->
<div class="section-full header" id="section-0">
<div class="left-square"></div>
<div class="sub-title">April.13th - 15th<br/>University of Pennsylvania</div>
<div class="vertical-sub-title mobile-hide">
A Summit that builds the bridge between us
</div>
<div class="vertical-sub-title mobile-only">
To Build the Bridge Between Us
</div>
<div class="page-caption black-shadow">
ABOUT <br/> PWCS
</div>
<div class="bottom-square">
<div class="row">
<div class="col-10 white-txt crimson-bg ls-1" style="letter-spacing: 3px;">REGISTER</div>
<div class="col-2 white-bg action-area">
<a href="#section-temp" class="black-txt"><i class="icofont icofont-dotted-right"></i></a>
</div>
</div>
</div>
</div>
<!-- MARK: TRACY! -->
<div class="white-bg" id="whitebox">
<div class="row row-eq-height">
<div class="col-lg-4 col-sm-12 col-xs-12">
<h1 class="title">The Largerst<br>
Student-run Sino-US Conference<br>
in the U.S.</h1>
</div>
<div class="col-lg-8 col-sm-12 hidden-xs">
<div class="row">
<div class="col-lg-6 col-sm-6 summary">
The 2018 Penn Wharton China Summit will be held on April 13th-15th,
2018 at the University of Pennsylvania. Hosted by the China Summit
Foundation and the Penn Wharton China Center, and further supported
by the Chinese embassy and the government of Pennsylvania, PWCS is
committed to build an influential platform that promotes communications
between the two countries and establish connections among students
oversea in the United States. With over 1500 attendees coming from
4 countries, 34 States and over 70 Cities, the inaugural PWCS in
April 2016 has already become the largest student organized summit
in the United States.
2018 is an important year for the development of US-China relationship.
We hope to strengthen the communication and facilitate cooperation
between top students, professionals and corporations from both countries,
and contribute to the long-lasting friendship between the United States
and China.
</div>
<div class="col-lg-6 col-sm-6 summary">
2018 Penn Wharton China Summit will consist of keynote addresses,
panel discussions, pitch competition and networking sessions. It is a
gathering of aspiring students, professionals, entrepreneurs, corporations,
and organizations from both countries to discuss the present and future of
China’s social and economic development and its interaction with the
United States and the world. The main theme of Penn Wharton China Summit
2018 is “Our Generation.” The summit will address how this generation of
tremendous innovation endowed with awakened sense of social responsibility
will strive to redefine China’s future on its road towards sustainability
and prosper. The discussion will unfold in depth with six industry-specific
panels, including Arts and Entertainment, Real Estate, Technology, Social
Responsibility, International Relations, Financial and Economics.
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-sm-12 col-xs-12">
<h1 id="whycome">WHY COME?</h1>
</div>
</div>
</div>
<div class="row no-gutters white-bg row-eq-height">
<div class="col-lg-6 col-sm-12 col-xs-12 crimson-bg flex">
<div id="redbox">
<div class="row">
<div class="strip">
<img src="../assets/images/black.png">
</div>
</div>
<div class="row reason">
<div class="col-lg-2 col-sm-2 col-xs-2 number">01</div>
<div class="col-lg-10 col-sm-10 col-xs-10 text">
<h4>A Global Outlook</h4>
<p class="white-paragraph">Napoleon once said, “China is a sleeping giant.
Let her sleep, for when she wakes, she will shake the World.”
Today, “China” is all over the news. The giant is finally waking up,
but what kind of power will it unleash upon the rest of the world?
Come see for yourself.</p>
</div>
</div>
<div class="row mid-pos">
<div class="strip">
<img src="../assets/images/black.png">
</div>
</div>
<div class="row mid-rs reason">
<div class="col-lg-2 col-sm-2 col-xs-2 number">02</div>
<div class="col-lg-10 col-sm-10 col-xs-10 text">
<h4>Bigger Names, Deeper Insights</h4>
<p class="white-paragraph">Our distinguished guests come from all
walks of life. They are the best in their fields, and are here to
share their personal experiences throughout their journeys. This
is a not-to-be-missed opportunity to learn from the best.</p>
</div>
</div>
<div class="row last-pos">
<div class="strip">
<img src="../assets/images/black.png">
</div>
</div>
<div class="row last-rs reason">
<div class="col-lg-2 col-sm-2 col-xs-2 number">03</div>
<div class="col-lg-10 col-sm-10 col-xs-10 text">
<h4>Going Beyond</h4>
<p class="white-paragraph">Whether you are interested in starting the
next Facebook, hoping to land a dream job, or excited about how
online auctions work, our wonderful side events will allow you to
make the most out of your PWCS experience.</p>
</div>
</div>
</div>
</div>
<div class="col-lg-6 col-sm-12 col-xs-12 black-bg flex">
<div id="blackbox">
<div class="row">
<div class="strip">
<img src="../assets/images/red.png">
</div>
</div>
<div class="row reason">
<div class="col-lg-2 col-sm-2 col-xs-2 number">04</div>
<div class="col-lg-10 col-sm-10 col-xs-10 text">
<h4 class="white-txt">The Wharton Experience</h4>
<p class="white-paragraph">PWCS is endorsed by Wharton, one of the
most prestigious business schools in the world. Come see for
yourself what this world-class business school is all about.</p>
</div>
</div>
<div class="row mid-pos">
<div class="strip">
<img src="../assets/images/red.png">
</div>
</div>
<div class="row mid-rs reason">
<div class="col-lg-2 col-sm-2 col-xs-2 number">05</div>
<div class="col-lg-10 col-sm-10 col-xs-10 text">
<h4 class="white-txt">Completely Student-run Summit</h4>
<p class="white-paragraph">PWCS is run by a group of passionate students.
We have made a name for ourselves from past summits, and we can’t wait
to show you what we are capable of in our greatest Summit ever.</p>
</div>
</div>
<div class="row last-pos">
<div class="strip">
<img src="../assets/images/red.png">
</div>
</div>
<div class="row last-rs reason">
<div class="col-lg-2 col-sm-2 col-xs-2 number">06</div>
<div class="col-lg-10 col-sm-10 col-xs-10 text">
<h4 class="white-txt">Explore Philadelphia</h4>
<p class="white-paragraph">From Independence Hall, Liberty Bell, to the
good old Ben Franklin, Philadelphia is a beautiful city of rich
history and culture. Did we mention its vibrancy yet? Don’t miss
out on the opportunity to explore the city that bred the winner
of the 2018 Super Bowl. Let’s go Eagles!</p>
</div>
</div>
</div>
</div>
</div>
<!-- Start of new team profile -->
<div class="team-profile white-bg">
<h2 class="center-txt">Our Team</h2>
<div class="slide-container">
<!-- These are the buttons -->
<div class="row">
<div class="teamBars center-txt col-lg-2 col-sm-3 col-12" onclick="currentSlide(1)">Board</div>
<div class="teamBars center-txt col-lg-2 col-sm-3 col-12" onclick="currentSlide(2)">Business Development</div>
<div class="teamBars center-txt col-lg-2 col-sm-3 col-12" onclick="currentSlide(3)">Marketing</div>
<div class="teamBars center-txt col-lg-2 col-sm-3 col-12" onclick="currentSlide(4)">Operations</div>
<div class="teamBars center-txt col-lg-2 col-sm-3 col-12" onclick="currentSlide(5)">Administration</div>
<div class="teamBars center-txt col-lg-2 col-sm-3 col-12" onclick="currentSlide(6)">Finance</div>
</div>
<!-- Here are the profiles -->
<!-- Page 1 -->
<div class="ourProfiles fade-in">
<div class="row">
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Zhilei_Zheng.png">
<h4>Zhilei Zheng</h4>
<h5>Technology Director</h5>
<div class="links">
<a href=""><i class="icofont icofont-social-linkedin"></i></a>
<a href=""><i class="icofont icofont-social-facebook"></i></a>
<a href=""><i class="icofont icofont-link-alt"></i></a>
</div>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Ruoyang_Ni.jpeg">
<h4>Rose Ni</h4>
<h5>President</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Yijing_Liu.jpg">
<h4>Dawn Liu</h4>
<h5>Vice President</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Yibo_Chen.jpg">
<h4>Yibo Chen</h4>
<h5>Vice President</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/George_Chen.jpg">
<h4>George Chen</h4>
<h5>Head of PR</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Appolos Liu</h4>
<h5>Head of Secretary</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Bryan Liang</h4>
<h5>Advisor</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Stephany_Li.jpg">
<h4>Stephanie Li</h4>
<h5>Administration Chair</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Alex_Chen.jpeg">
<h4>Alex Chen</h4>
<h5>Business Development Chair</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Menglu_Zhang.jpg">
<h4>Menglu Zhang</h4>
<h5>Finance Chair</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Lynn_Zhao.jpg">
<h4>Lynn Zhao</h4>
<h5>Marketing Chair</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Hailey_Feng.jpg">
<h4>Hailey Feng</h4>
<h5>Operations Chair</h5>
</div>
</div>
</div>
<!-- Page 2 -->
<div class="ourProfiles fade-in">
<div class="row">
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Tsz_Kwan_Lam.jpg">
<h4>Bill Lam</h4>
<h5>Vice Chair</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Phillip Zhang</h4>
<h5>Vice Chair</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/David_Chen.jpg">
<h4>David Chen</h4>
<h5>Member</h5>
<div class="links">
<a href="https://www.linkedin.com/in/davidchenpenn/"><i class="icofont icofont-social-linkedin"></i></a>
</div>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Rachel Wu</h4>
<h5>Member</h5>
<div class="links">
<a href="https://www.linkedin.com/in/rachelyueqiwu/"><i class="icofont icofont-social-linkedin"></i></a>
</div>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Jipeng_Liu.jpg">
<h4>Jipeng Liu</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Qihao Yao</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Qingrong Ji</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>William Sun</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Echo_Zeng.jpg">
<h4>Zhongyuan Zeng</h4>
<h5>Member</h5>
<div class="links">
<a href="https://www.linkedin.com/in/echo-zeng-8848258b"><i class="icofont icofont-social-linkedin"></i></a>
</div>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Samuel_Kang.jpg">
<h4>Samuel Kang</h4>
<h5>Member</h5>
<div class="links">
<a href="https://www.linkedin.com/in/kangsamuel/"><i class="icofont icofont-social-linkedin"></i></a>
<a href="https://www.facebook.com/kang.samuel"><i class="icofont icofont-social-facebook"></i></a>
</div>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Mingyu Li</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Yilin_Ma.jpg">
<h4>Yilin Ma</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Kitty_Chen.jpg">
<h4>Shiqi Chen</h4>
<h5>Member</h5>
<div class="links">
<a href="https://www.linkedin.com/in/chen-kitty-154925134"><i class="icofont icofont-social-linkedin"></i></a>
</div>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Marianne_Xiong.jpg">
<h4>Marianne Xiong</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Juliette Zhu</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Michael Li</h4>
<h5>Senior Advisor</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Lawrence Lu</h4>
<h5>Member</h5>
</div>
</div>
</div>
<!-- Page 3 -->
<div class="ourProfiles fade-in">
<div class="row">
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Zhilei_Zheng.png">
<h4>Zhilei Zheng</h4>
<h5>Vice Chair</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Elaine Liu</h4>
<h5>Vice Chair</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Ashling Sui</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Michelle Zhan</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Tracy Yan</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Sai_Ma.jpg">
<h4>Sai Ma</h4>
<h5>Member</h5>
<div class="links">
<a href="https://www.linkedin.com/in/sai-ma-2909a813a"><i class="icofont icofont-social-linkedin"></i></a>
<a href="https://www.facebook.com/saima1998"><i class="icofont icofont-social-facebook"></i></a>
</div>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Emily_Guo.jpg">
<h4>Emily Guo</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Sophie_Xi.jpg">
<h4>Sophie Xi</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Sherry_Guo.jpg">
<h4>Xinning Guo</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Mindy_Ma.jpg">
<h4>Mindy Ma</h4>
<h5>Member</h5>
<div class="links">
<a href="https://www.linkedin.com/in/mindy-ma-5058ba150/"><i class="icofont icofont-social-linkedin"></i></a>
</div>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Lula_Chou.jpg">
<h4>Lula Chou</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Michelle_Cai.jpg">
<h4>Michelle Cai</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Tony Zheng</h4>
<h5>Member</h5>
</div>
</div>
</div>
<!-- Page 4 -->
<div class="ourProfiles fade-in">
<div class="row">
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Danning_Tu.jpg">
<h4>Danning Tu</h4>
<h5>Vice Chair</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Yi_Yang.jpg">
<h4>Yi Yang</h4>
<h5>Vice Chair</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Ying_Chen.jpg">
<h4>Ying Chen</h4>
<h5>Vice Chair</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>William Sun</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Clover Zhao</h4>
<h5>Volunteer</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Zhiyuan Liu</h4>
<h5>Volunteer</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Yixi Wang</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Lei_Wang.jpg">
<h4>Lei Wang</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Yijie Zhao</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Gaorui_Liu.jpg">
<h4>Gaorui Liu</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Wayne_Yang.jpg">
<h4>Wenyao Yang</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Wenhui Zhao</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Thomas Wang</h4>
<h5>Member</h5>
</div>
</div>
</div>
<!-- Page 5 -->
<div class="ourProfiles fade-in">
<div class="row">
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Xiaoya_Song.jpg">
<h4>Sabrina Song</h4>
<h5>Vice Chair</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Julia Chen</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Chelsie_Xu.jpg">
<h4>Chelsie Xu</h4>
<h5>Member</h5>
<div class="links">
<a href="https://www.linkedin.com/in/chelsie-xu-532951149/"><i class="icofont icofont-social-linkedin"></i></a>
</div>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Shangting Sun</h4>
<h5>Member</h5>
<div class="links">
<a href="https://www.facebook.com/lucy.sun.16"><i class="icofont icofont-social-linkedin"></i></a>
</div>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Claire_Yu.jpg">
<h4>Claire Yu</h4>
<h5>Member</h5>
<div class="links">
<a href="https://www.linkedin.com/in/claire-yu-b4799b155/"><i class="icofont icofont-social-linkedin"></i></a>
<a href="https://www.facebook.com/yu.r.claire"><i class="icofont icofont-social-facebook"></i></a>
</div>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Yiting_Hua.jpg">
<h4>Ellen Hua</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Cynthia Li</h4>
<h5>Member</h5>
</div>
</div>
</div>
<!-- Page 6 -->
<div class="ourProfiles fade-in">
<div class="row">
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Jeff Ding</h4>
<h5>Vice Chair</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Grace Guo</h4>
<h5>Vice Chair</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Jingxin Wang</h4>
<h5>Vice Chair</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/unnamed.png">
<h4>Lingpei Zhou</h4>
<h5>Member</h5>
</div>
<div class="col-lg-2 col-sm-3 col-6">
<img class="img-fluid" src="../assets/images/Carol_Zhou.jpeg">
<h4>Jinkang Zhou</h4>
<h5>Member</h5>
</div>
</div>
</div>
</div>
</div>
<!-- End of new team profile -->
<!--
MARK: Footer
-->
<div class="row footer-img" id="section-footer">
<div class="col-12" style="text-align:center;">
<div class="stop-sign"></div>
</div>
<div class="col-12">
<img src="../assets/images/footer-banner.png" width="100%">
</div>
</div>
<!--
MARK: Page End
*******************
-->
<script src="../js/bootstrap.min.js"></script>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script src="../js/global.js"></script>
<script src="../js/home.js"></script>
<script src="../js/about.js"></script>
<script>
mapboxgl.accessToken = 'pk.eyJ1IjoidG9teiIsImEiOiJjajJyN3dyenkwMDVqMndzN3Y0cjk0bTRmIn0.FEEGdubneAr17N9f8ZHh5g';
var map = new mapboxgl.Map({
container: 'map',
style: 'mapbox://styles/mapbox/dark-v9',
center: [-75.1982673, 39.9529105],
zoom: 9
});
$('.carousel').carousel();
</script>
</body>
</html>