-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteamPage.html
More file actions
649 lines (642 loc) · 51.2 KB
/
teamPage.html
File metadata and controls
649 lines (642 loc) · 51.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
<!DOCTYPE html>
<html>
<head>
<title>Team:Cornell/PageName - 2018.igem.org</title>
<!-- CSS -->
<link rel="stylesheet" type="text/css" href="styles/styles.css">
<<<<<<< HEAD
<link rel="stylesheet" type="text/css" href="styles/grids.css">
=======
<link rel="stylesheet" type="text/css" href="styles/grids.css">
>>>>>>> master
</head>
<body class="team-page-wrapper">
<!------------------------ NAV BAR START ------------------------>
<nav>
<div class="nav-bar-wrapper">
<div>
<div class="nav-bar-logo">
<a href="home"><img src="http://2018.igem.org/wiki/images/6/63/T--Cornell--OscillateLogo.jpg" alt="Oscillate"></a>
</div>
<div class="nav-bar-main-menu">
<div class="dropdown">
<button class="dropbtn">TEAM</button>
<div class="dropdown-content team-dropdown-content">
<a href="http://2018.igem.org/Team:Cornell/Team">BIOS</a>
<a href="http://2018.igem.org/Team:Cornell/Sponsors">SPONSORS</a>
<a href="http://2018.igem.org/Team:Cornell/Attributions">ATTRIBUTIONS</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">OUTREACH</button>
<div class="dropdown-content outreach-dropdown-content">
<a href="#">COLLABORATIONS</a>
<a href="#">PUBLIC ENGAGEMENT</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">HUMAN-CENTERED DESIGN</button>
<div class="dropdown-content human-dropdown-content">
<a href="#">PRACTICES</a>
<a href="#">POLICIES</a>
<a href="http://2018.igem.org/Team:Cornell/Entrepreneurship">ENTREPRENEURSHIP</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">MODELING</button>
<div class="dropdown-content modeling-dropdown-content">
<a href="http://2018.igem.org/Team:Cornell/Model">MODEL</a>
<a href="http://2018.igem.org/Team:Cornell/Software">SOFTWARE</a>
<a href="http://2018.igem.org/Team:Cornell/Design">DESIGN</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">TOOLKIT</button>
<div class="dropdown-content toolkit-dropdown-content">
<ul>
<div class="nav-first-col">
<li class = "wet-lab-list-title"><b>WET LAB</b></li>
<li><a href="http://2018.igem.org/Team:Cornell/Foundations">FOUNDATIONS</a></li>
<li><a href="http://2018.igem.org/Team:Cornell/Demonstrate">DEMONSTRATE</a></li>
<li><a href="http://2018.igem.org/Team:Cornell/InterLab">INTERLAB</a></li>
<li><a href="hhttp://2018.igem.org/Team:Cornell/Parts">PARTS</a></li>
</li>
</div>
<div class="nav-second-col">
<li class = "doc-list-title"><b>DOCUMENTATION</b></li>
<li><a href="http://2018.igem.org/Team:Cornell/Notebook">NOTEBOOK</a></li>
<li><a href="http://2018.igem.org/Team:Cornell/Safety">SAFETY</a></li>
</li>
</div>
</ul>
</div>
</div>
<div class="dropdown">
<button class="dropbtn" onclick="location.href='http://2018.igem.org/Team:Cornell/Description '">ABOUT</button>
</div>
<div class="dropdown">
<button class="dropbtn active-page" onclick="location.href='http://2018.igem.org/Team:Cornell'">HOME</button>
</div>
</div>
</div>
</div>
</nav>
<!------------------------ NAV BAR END ------------------------>
<!------------------------ TEAM PAGE BANNER START ------------------------>
<header class="standard-page-banner team-page-banner">
<svg viewBox="0 0 100 100" width=100% height=100%>
<polygon points="-50,50 50,10 150,50 50,90" fill="white" fill-opacity="0.4"></polygon>
<text class="standard-page-banner-title" text-anchor="middle" alignment-baseline="middle" x=50% y=50% >Our Team</text>
</svg>
</header>
<!------------------------ TEAM PAGE BANNER END ------------------------>
<!------------------------ TEAM PAGE CONTENT START ------------------------>
<div class="team-page-content-area">
<div class="team-page-content-section-right">
<div class="team-page-image-left">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class="team-page-text-right">
<div class="team-page-content-title"><a id="Rahul">Rahul Rambhatla - iGEM Team Lead</a></div>
<div class="team-page-content-subheading">Chemical Engineering '20</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
Bigfoot, the Loch Ness Monster, Rahul Rambhatla. A truly mythological being in all sense of the word. His ability to solve the hardest ChemE problem sets only rivals his ability to resist the temptation of meat. Some might question why a chemical engineer leads a synthetic biology project team, Rahul is one of those people. He is not immune to the difficulties of this world however, on late nights you may find him swiping aimlessly on Tinder, but he carries a far bigger weight than most, the looming presence of arranged marriage. On most days you can find him in Weill or Duffield, and on truly (un)lucky days you may see him sporting one of his polos or t-shirts, with his dad bod on full display. Ride on Rahul, ride on.
</p>
</div>
</div>
<div class="team-page-content-section-left">
<div class="team-page-image-right">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class = "team-page-text-left">
<div class="team-page-content-title"><a id="Amith">Amith Punyala - Wet Lab Co-Lead </a></div>
<div class="team-page-content-subheading">Biological Sciences & Chemistry '19</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
Amith Punyala (2018)
<br>
<br>Pretty much any old Joe Schmoe can count cells under a microscope or click buttons on one of those new-fangled electronic plate readers. But for what we in the trade know as “wetwork” … you need a professional. A professional like Amith Punyala.
<br>
<br>After a long and distinguished career liquidating LB stock and spilling brain heart infusion, Amith retired to live a life in peace on his quaint plantation in Georgia, accompanied by his best friends—an exotic tame moth collection. But just when Punyala thought he was out, he was pulled back in. They stole his pipette tips and resold them on the black market. They stored his plates upside down. Worst of all, they destroyed his vintage -20 freezer. This time, it’s no longer just another job. It’s personal.
<br>
<br>This autumn, Amith Punyala is out for vengeance, raising his Eppendorf one final time. Watch in your local IMAX® theatre or convention center starting October 24.
</p>
</div>
</div>
<div class="team-page-content-section-right">
<div class="team-page-image-left"><!---->
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class="team-page-text-right"> <!--team-page-text-right-->
<div class="team-page-content-title"><a id="Amy">Amy Zhong - Wiki & Design Lead</a></div>
<div class="team-page-content-subheading">Computer Science '20</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
This is Amy, basically the most loved member on iGEM. She always comes in clutch when making the most beautiful and aesthetic pages of the website. Not only is she basically a goddess in CS, she is also extremely multitalented, enjoying tennis, hiking, and even cooking (especially in the video game Overcooked)! Even though she is basically in love with Jon Snow (and snow in general), she is definitely not cold in any way. She is actually extremely humble and kind, and always willing to help with anything (since she’s basically a genius at everything). She is just as adorable as the Baymax plushie that she treasures, and deserves all the happiness in the world :).
</p>
</div>
</div>
<div class="team-page-content-section-left">
<div class="team-page-image-right">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class = "team-page-text-left">
<div class="team-page-content-title"><a id="Ashwin">Ashwin Viswanathan - Wet Lab Co-Lead</a></div>
<div class="team-page-content-subheading">Biological Sciences/Neurobiology & Government '20</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
Ashwin - a man with luscious hair often tied up in a captivating man bun, a man who towers over anyone he meets (I guess it’s fitting that both of his labs are on Tower Road). Now you would probably think that a tall, charming man like him would never be able to get along with a tiny girl like me (I don’t even reach his shoulders). Well, you’re right - we don’t. Whether it is giving each other unimpressed looks or him blasting compressed air at me after every few words that I speak, we just cannot seem to stop bickering with each other. But all in all, he’s a hardworking man that you can definitely count on.
</p>
</div>
</div>
<div class="team-page-content-section-right">
<div class="team-page-image-left">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class="team-page-text-right">
<div class="team-page-content-title"><a id="Avisha">Avisha Kumar</a></div>
<div class="team-page-content-subheading">Electrical & Computer Engineering '20</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
<img id = "Avisha" src="http://2018.igem.org/wiki/images/d/d6/T--Cornell--AvishaBio.jpg">
</p>
</div>
</div>
<div class="team-page-content-section-left">
<div class="team-page-image-right">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class = "team-page-text-left">
<div class="team-page-content-title"><a id="Darren">Darren Tsai - Product Development Lead</a></div>
<div class="team-page-content-subheading">Computer Science '20</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
Snake (n.) - 1. any of numerous limbless scaled reptiles (suborder Serpentes synonym Ophidia) with a long tapering body and with salivary glands often modified to produce venom which is injected through grooved or tubular fangs
<br>
<br>2. a worthless or treacherous fellow
<br><i>Darren is a snake.</i>
</p>
</div>
</div>
<div class="team-page-content-section-right">
<div class="team-page-image-left">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class="team-page-text-right">
<div class="team-page-content-title"><a id="Greg">Greg Albano</a></div>
<div class="team-page-content-subheading">Biological Engineering '19</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
Greg puts the sex in professexional. His biggest life accomplishment is getting 1069 likes on an instagram post about taco bell. When he's not busy being a douchebag, he's busy taking half-naked pictures of himself near vague bodies of water.
</p>
</div>
</div>
<div class="team-page-content-section-left">
<div class="team-page-image-right">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class = "team-page-text-left">
<div class="team-page-content-title"><a id="Isha">Isha Pradhan</a></div>
<div class="team-page-content-subheading">Mechanical Engineering '20</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
As Katy Perry once said in her OG hit 'Hot 'n Cold', "You change your mind like Isha changes majors." But 2 years in, she is happily married to mechanical engineering. One might compare Isha to her best friend 'Hoot' as they both observe a noctural lifestyle. Even though she is low-key two-timing iGEM with another project team, she is a supremely caring and dedicated person.
</p>
</div>
</div>
<div class="team-page-content-section-right">
<div class="team-page-image-left">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class="team-page-text-right">
<div class="team-page-content-title"><a id="Itai">Itai Levin</a></div>
<div class="team-page-content-subheading">Chemistry '19</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
<a href="https://imgflip.com/i/2hw98t"><img src="https://i.imgflip.com/2hw98t.jpg" title="made at imgflip.com"/ id = 'ItaiMeme'></a>
</p>
</div>
</div>
<div class="team-page-content-section-left">
<div class="team-page-image-right">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class = "team-page-text-left">
<div class="team-page-content-title"><a id="Swathi">Swathi Chakrapani</a></div>
<div class="team-page-content-subheading">Computer Science '19</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
Queen of casual roasting and well-meaning sarcasm, Swathi is like the pickle to the iGEM sandwich, addding the little zing you need for things to not go stale. If you ever worried about getting away with a comment that was very attackable, don't worry because Swathi will *call you out.* But, she has another softer side too, also queen of telling you how #relatable your suffering is helping you calm down whenever your feeling overwhelmed. In her free time, find her cranking away at her CS assignments while simultaneously meme-ing everything.
</p>
</div>
</div>
<div class="team-page-content-section-right">
<div class="team-page-image-left">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class="team-page-text-right">
<div class="team-page-content-title"><a id="Max">Max Zhou</a></div>
<div class="team-page-content-subheading">Biological Engineering & Computer Science '19</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
Behind a frail exterior, Max's spirit burns with a slightly less frail flame. A veritable powerhouse, Max can often be seen roaming the hallways of Weill Hall or the atria of Duffield pondering where exactly his life went wrong. However, Max is so unafraid of failure that he chose to major in two difficult STEM majors (Biological Engineering and Computer Science) so he could fail twice as much. The original formulator of our current project, Max's knowledge of seemingly inane facts amazes us all. A founding member of the iGEM Chicken Club, his clout (and determination to eat chicken wings) knows no bounds. As an aspiring...something, Max is a true Renaissance man, splitting his time between such diverse fields as cooking, research, crying, and occasionally, homework.
</p>
</div>
</div>
<div class="team-page-content-section-left">
<div class="team-page-image-right">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class = "team-page-text-left">
<div class="team-page-content-title"><a id="Maia">Maia Mirchandani</a></div>
<div class="team-page-content-subheading">Operations Research & Information Engineering '19</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
As an Operations Research major, Maia is critical to the operations of Cornell iGEM’s research. Her entrepreneurial spirit drives the business sub team. She has supported many of the team’s efforts in fundraising, entrepreneurship, and patent seeking. When she is not busy sleeping in hot tubs, she enjoys tarnishing the online reputation of local public transportation services.
</p>
</div>
</div>
<div class="team-page-content-section-right">
<div class="team-page-image-left">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class="team-page-text-right">
<div class="team-page-content-title"><a id="Raymond">Raymond Zhang - Policy & and Practice Co-Lead</a></div>
<div class="team-page-content-subheading">Chemistry '20</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
Bio student: the mitochondria is the powerhouse of the cell-iGEM member: 😤😤 Don’t forget ⛔️⛔️the powerhouse ⚡️⚡️of iGEM 🤗🔬Presenting Raymond👨🔬👨🔬, one of the hardest working 💦💦members of the team. Expect ✅✅ nothing less from this top 🏅🏅chemistry major ⚗️⚗️ - he’s got a delta G < 0 📈📈kind of spontaneity 💥💥but doesn’t quit 🙅🏻♂️🙅🏻♂️until he hits the stop codon 🛑🛑. Ladies, if you’re looking 👀👀 for him, he’ll probably be in the Ke lab 🤓🤓, attending every iGEM-related event as our poster boy 💙💜and head spokesperson 🗣🗣, flexing 💪🏼💪🏼his Chinese Yoyo skills 😲😲, or praying 🙌🏻🙌🏻 at his shrine for George Church and Gregor Mendel F2 generation 1:2:1 🌱🌸🌸🌱
</p>
</div>
</div>
<div class="team-page-content-section-left">
<div class="team-page-image-right">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class = "team-page-text-left">
<div class="team-page-content-title"><a id="Rohit">Rohit Bandaru</a></div>
<div class="team-page-content-subheading">Computer Science '19</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
Constantly working behind the scenes, one of the essential
members of Cornell iGEM, our very own Rohit Bandaru!
A senior/M.Eng student focusing in CS and ECE here,
Rohit has held many important roles as a Wet Lab member
and now Business team member of iGEM. As a result of
Rohit interning at Amazon this past summer, his smile
now always resembles an arrow. In his free time, Rohit
has been known to enjoy working on autonomous
bicycles and devouring the spiciest of foods.
</p>
</div>
</div>
<div class="team-page-content-section-right">
<div class="team-page-image-left">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class="team-page-text-right">
<div class="team-page-content-title"><a id="Saachi">Saachi Gopal - Business Lead</a></div>
<div class="team-page-content-subheading">Computer Science '20</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
Hi, I’m Saachi. Majoring in CS and minoring in Applied Economics. Business lead, Adidas enthusiast, and Saachmaster. When I’m not coding, I’m probably spending too much time at Mehak. I love alpacas so much that I stuck a poster of one in my room and got a bunch of alpaca stickers for my laptop. Other than staring at alpacas, I like to blast music through my headphones and sometimes I worry I am losing my hearing. I wonder why.
</p>
</div>
</div>
<div class="team-page-content-section-left">
<div class="team-page-image-right">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class = "team-page-text-left">
<div class="team-page-content-title"><a id="Sneha">Sneha Kabaria</a></div>
<div class="team-page-content-subheading">Chemical Engineering '19</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
The best way to know if you are having a bad semester is if you get fewer hours of sleep per night than Sneha does in a week. But if you ever need a friend to stay up with you until 5am in Duffield, Sneha is your gal. She is always hard at work hardly working - balancing social life with iGEM, 30+ credits, and service to the community. We are lucky to have such an inspiring presence in our midst.
</p>
</div>
</div>
<div class="team-page-content-section-right">
<div class="team-page-image-left">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class="team-page-text-right">
<div class="team-page-content-title"><a id="Yannie">Yannie Mei - Policy & Practices Co-Lead</a></div>
<div class="team-page-content-subheading">Mechanical Engineering '20</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
the life of yannie
<br>
<br>black clothes >> any other color clothing
<br>
<br>working overtime on weekends >> sleeping in
<br>
<br>meche >> bme but also plants and bacteria 4 lyfe
<br>
<br>farming all your own vegetables >> going grocery shopping
<br>
<br>any other nickname >> being called yannifer
</p>
</div>
</div>
<div class="team-page-content-section-left">
<div class="team-page-image-right">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class = "team-page-text-left">
<div class="team-page-content-title"><a id="Yeojin">Yeojin Min</a></div>
<div class="team-page-content-subheading">Chemical Engineering '20</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
Yeojin's Life Advice:
<br>1. Rahul is fake
<br>
<br>2. when working with black powders, wear white shirts so the stain is more apparent
<br>
<br>3. ChemEs are snakes
<br>
<br>4. It's all about the french tucks
<br>
<br>5. food is life. life is food. but also cats. and dogs. and makeup.
6. The most properest of greetings is friendo but yeojinnie minnie is also aight
</p>
</div>
</div>
<div class="team-page-content-section-right">
<div class="team-page-image-left">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class="team-page-text-right">
<div class="team-page-content-title"><a id="Ping">Yun Ping Tseng</a></div>
<div class="team-page-content-subheading">Computer Science '20</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
Not only is Ping a CS whiz, but she's also an incredible musician, sharing her musical talent with the world through flute ensemble and her love for piano. She also loooooves cats and hedgehogs...especially cats. More specifically, Ping is OBSESSED with Pooky the Munchkin, an instagram cat star (who is pretty freaking adorable). You'll probably have to scroll for ~five minutes of consecutive cat posts when looking through her insta feed. As a person, Ping is sweet and adorable but also one of the most reliable and capable people you'll meet who's ready to take on any challenge thrown at her. She's a true homie when you're struggling and dying in CS 3110 and 3410 :').
</p>
</div>
</div>
<div class="team-page-content-section-left">
<div class="team-page-image-right">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class = "team-page-text-left">
<div class="team-page-content-title"><a id="Fion">Fion Chu</a></div>
<div class="team-page-content-subheading">Human, Biology, Health, and Society '19</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
Fion is like drinking warm kombucha on a hot summer day. The first sip is pungent, but the rest of the bottle is refreshing and delicious. Feon may not look it but she is a Senior majoring in Human Biology, Health, and Society, and what she lacks in size she makes up for in drive and ferocity. Faon has a ton of great character traits and is a born scientist/future physician. Let's talk about what Fuon would also be great at. Foin would be a phenomenal basketball player. Foen would be amazing at live television. Foan would be great at being an archaeologist. Foun would be probably the greatest White House Chief of Staff ever in office. More importantly however, noiF is an invaluable member of our team and it wouldn't be the same without her. We're truly lucky to have Fyon.
</p>
</div>
</div>
<div class="team-page-content-section-right">
<div class="team-page-image-left">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class="team-page-text-right">
<div class="team-page-content-title"><a id="Cristina">Cristina Zhao</a></div>
<div class="team-page-content-subheading">Information Science, Systems, and Technology '19</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
🤯, 🍊, 1️⃣2️⃣3️⃣ 💸👾,💻⚗️
</p>
</div>
</div>
<div class="team-page-content-section-left">
<div class="team-page-image-right">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class = "team-page-text-left">
<div class="team-page-content-title"><a id="Carol">Carol Hung</a></div>
<div class="team-page-content-subheading">Biomedical Engineering '19</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
Meet Carol, otherwise known as the CU Ghost! Legend says Carol originated from the distant lands of the Bay area in California. As a member of Cornell iGEM, she quickly rose up the ranks until she peaked, obtaining the coveted title of Sub-Team Lead. Unfortunately, in her junior year at Cornell, Carol contracted Med School Apps. Since then no one has heard from her, as she vanished off the face of the Earth. Every once in a while though, if he/she is lucky, a stray member may hear whispers in the basement of Weill Hall from this passed PCR Goddess or spot a brief glimpse of her at a casual G-body meeting.
</p>
</div>
</div>
<div class="team-page-content-section-right">
<div class="team-page-image-left">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class="team-page-text-right">
<div class="team-page-content-title"><a id="Ann">Ann Metzloff</a></div>
<div class="team-page-content-subheading">Chemical Engineering '21</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
Ann Metzloff, ladies and gentlemen! Many of you may know her as the namesake and co-creator of the (future) Nobel Prize-winning q5annMich PCR protocol, but she is much more than that. A chemical engineer by day, Ann moonlights as a lab queen by mid-afternoon, and she likes to spend her free time commuting to and from her dorm in Schuyler House. Zonk is one of the many words that she likes. If you need someone to get the job done, she's your girl! Night may have fallen before she's made it to you from Schuyler, but let me tell you, it's worth the wait. Gosh, if you want to know the one word that describes Ann best, read the first letter of every sentence.
</p>
</div>
</div>
<div class="team-page-content-section-left">
<div class="team-page-image-right">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class = "team-page-text-left">
<div class="team-page-content-title"><a id="Charles">Charles Dai</a></div>
<div class="team-page-content-subheading">Biology, Chemistry, & Computer Science '21</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
Charles is like an onion. Not only does he make us cry, he's a multilayered person with potentially more than one positive quality. A hardworking, kind, and devout Christian boy, Charles seems to embody everything we'd want in our future child's spouse. However, peel back this layer, and you're confronted by a mass of degeneracy, tenuously held together by memes and K-Pop. We've only gotten to this layer, but I'm sure it doesn't get much better from here. Degeneracy aside, Charles is an integral member of the Cornell iGEM team, effortlessly juggling lab responsibilities with his double (triple?!) major and spontaneous bubble tea appointments. Expect things from Charles, some of which may be good, in the future.
</p>
</div>
</div>
<div class="team-page-content-section-right">
<div class="team-page-image-left">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class="team-page-text-right">
<div class="team-page-content-title"><a id="Michelle">Michelle Croen</a></div>
<div class="team-page-content-subheading">Biological Engineering '21</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
A sophomore studying biological engineering, Michelle is an integral member of the wet lab subteam. She skillfully balances her schoolwork and lab work and is always willing to lend a helping hand. Her enthusiasm is clearly appreciated by others, and people are excited to see her wherever she goes! Michelle also has a keen sense for locating free food, which is much appreciated by her other teammates. When not working in the lab, Michelle amazes us all with her outdoorsiness and sense of adventure! She’s a member of Outdoor Odyssey and frequently enjoys trips camping and rock climbing. We are lucky to have Michelle’s dedication and talent!!
</p>
</div>
</div>
<div class="team-page-content-section-left">
<div class="team-page-image-right">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class = "team-page-text-left">
<div class="team-page-content-title"><a id="Jonathan">Jonathan Wang</a></div>
<div class="team-page-content-subheading">Human Biology, Health, and Society '21</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
Have you ever come across a quokka? This previously endangered animal became internet famous and is known as “the happiest animal in the world.” Well look no further because we have our own quokka here on the team! Hailing from San Diego, this mans resembles the appearance of the cute smol animal like no other. If you ever need to find him, 99.99% chance he is in Uris library, sipping cocktails in the cocktail lounge. Be careful not to give him too much because he might just fall asleep on you. However, you must know that his drink of choice is tea. Although he doesn't have it often, when he does, he brews really big pots of tea.
</p>
</div>
</div>
<div class="team-page-content-section-right">
<div class="team-page-image-left">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class="team-page-text-right">
<div class="team-page-content-title"><a id="Behram">Behram Khan</a></div>
<div class="team-page-content-subheading">Biology & Anthropology '21</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
Behram bʌ-räm bae-räm
<br>
<br>1. Dude who can and will pull off any outfit be it a bucket hat, Jean jacket or light up shoes it will look good on him. Oh and don’t forget the classy penny board.
<br>
<br>2. Somebody who knows everything about cars, literally everything. You mention a season of Top Gear and he can tell you every car in every episode, including the bad ones.
<br>
<br>3. A caretaker of fish, who will care for them, scrub them and when it comes time, bury them properly.
<br>
<br>His imagination is endless, his heart his huge so if you ever need some tips or want to bounce wacky ideas off somebody, or just want a wholesome conversation, just mention Jeff Buckley’s hair (which you should always be doing anyway) and Behram will show up to help.
</p>
</div>
</div>
<div class="team-page-content-section-left">
<div class="team-page-image-right">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class = "team-page-text-left">
<div class="team-page-content-title"><a id="Matthew">Matthew Peroni</a></div>
<div class="team-page-content-subheading">Mathematics & Biological Engineering '20 </div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
When you meet Matthew, the first thing you notice is his glorious beard. The second thing you notice is his definition. My Buddha, that man is so defined that he puts the dictionary to shame. His arms are just soooo.. *cough*...right, this is a bio about matt. So Matt likes to go to the gym, he works out pretty often. Whenever he does, he just looks so hot in that tight outfit. I often just love watching him squat because of that well defined A-...*cough*. Sorry, bad habits die hard.
</p>
</div>
</div>
<div class="team-page-content-section-right">
<div class="team-page-image-left">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class="team-page-text-right">
<div class="team-page-content-title"><a id="Jackie">Jackie Zheng</a></div>
<div class="team-page-content-subheading">Computer Science '21</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
Jackie Zheng, a sophomore CS major, is a man of many talents and mysteries. His presence will leave you asking questions like: What is going on with that flowing mane? Why did he just randomly start doing push ups? How did he just make a perfect steak at midnight sporting nothing but briefs, with only a pair of chopsticks and some salt? Undoubtably questionable, Jackie has made great contributions to the team, most noticably through his ability to physically intimidate cells to do what we want by simply flexing over a petri dish. Though he has great technical ability, Jackie still puts the sexy in burning bread because somehow microwaving it was going to fix it. Wait.
</p>
</div>
</div>
<div class="team-page-content-section-left">
<div class="team-page-image-right">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class = "team-page-text-left">
<div class="team-page-content-title"><a id="Gloria">Gloria Zhou</a></div>
<div class="team-page-content-subheading">Chemical Engineering '21</div>
<hr class="yellow-accent-line-left">
<div class = "gloriabio">
<embed class ="gloriaimage" width = "500px" height = "250px" src = "http://2017.igem.org/wiki/images/f/f4/T--Cornell-GraceBio.mp4">
</div>
</div>
</div>
<div class="team-page-content-section-right">
<div class="team-page-image-left">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class="team-page-text-right">
<div class="team-page-content-title"><a id="Jennifer">Jennifer Zhou</a></div>
<div class="team-page-content-subheading">Computer Science '21</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
This is the story of a woman named Jennifer. Jennifer worked for a company in a big building where she was Employee #7513. Employee #7513’s job was simple: she sat at her desk in room 7513 and she pushed buttons on a keyboard. Orders came to her through a monitor on her desk, telling her what buttons to push, how long to push them, and in what order. This is what Employee #7513 did every day of every month of every year, and although others might have considered it soul rending, Jennifer relished every moment the orders came in, as though she had been made exactly for this job. And Jennifer was happy. Jennifer is a CS major.
</p>
</div>
</div>
<div class="team-page-content-section-left">
<div class="team-page-image-right">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class = "team-page-text-left">
<div class="team-page-content-title"><a id="Olivia">Olivia Qiu</a></div>
<div class="team-page-content-subheading">Biology '21</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
Meet Olivia! She answers to Olivia, Liv, Olive, and Ollie. She enjoys naps in the sun, tennis balls, staying hydrated, and lots of head pats. She knows how to sit, shake, roll over, and will come when called. Olivia loves bread, is good with kids, and doesn't bite. She gets really excited when meeting new people, so make sure you shower her with attention! She likes munching on snacks, dinner, walks, and must be well fed at all times. Olivia is looking for a lifetime companion and a forever home, so make sure to adopt today!!!
</p>
</div>
</div>
<div class="team-page-content-section-right">
<div class="team-page-image-left">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class="team-page-text-right">
<div class="team-page-content-title"><a id="Emily">Emily Wang</a></div>
<div class="team-page-content-subheading">Biology, Chemistry, & Business '20</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
If you've heard about Emily, you would know its hard to separate her facts from her mythos. There's this rumor that she runs multiple marathons a year and has a start-up for therapeutic devices... that she knows something about just about everything... that she is a writer, aspiring doctor, and designer... that shes currently traveling the world...But once you get to know her, you realize all of it is quite true, and that she is a kind and enthusiastic human being to boot!
</p>
</div>
</div>
<div class="team-page-content-section-left">
<div class="team-page-image-right">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class = "team-page-text-left">
<div class="team-page-content-title"><a id="Rachel">Rachel George</a></div>
<div class="team-page-content-subheading">Biomedical Engineering '21</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
If you didn’t think a room could get any brighter, just wait until Rachel steps foot in it. One of the cutest rays of sunshine you’ll ever find on Cornell’s campus, Rachel is as fun and cheerful as the sprinkles she loves to eat. Rachel is fearless because she WILL. DRINK. THAT. BOBA. (and immediately take a Lactaid because ain’t nobody got time for lactose intolerance). You’ll never catch her setting foot in Carpenter Hall unless the world is coming to an end (and even then it’s still debatable). When she’s not busy being a star BME student, Rachel can be found actively petting dogs and speed-walking to her classes.
</p>
</div>
</div>
<div class="team-page-content-section-right">
<div class="team-page-image-left">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class="team-page-text-right">
<div class="team-page-content-title"><a id="Aaron">Aaron Berman</a></div>
<div class="team-page-content-subheading">Biological Engineering '20</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
Warning: This bio may be too wholesome for some. But that's because Aaron is the most wholesome human being you'll ever meet. When's he's not engineering biologically, doing experiments in the dungeons of Weill, and chucking gnarly tosses on the ultimate frisbee team, you can find him hanging with his friends. And boi those friends are lucky because he's always willing to listen to what's going on in other people's lives and he'll help them out in the best way he knows how... Netflix and Chill (and giving awesome advice). Everyone on the team has a story of Netflix and Chilling with Aaron. He'll watch just about anything with anyone at anytime. He'll people into shows like Samuria Jack, Avatar: The Last Airbender, Rick and Morty. He's also loves art, reading, smiling, laughing, hugs, and super sick handshakes. If you see Aaron walking assume he already knows what handshake you should do together. Give him some love, he'll give it right back :)
</p>
</div>
</div>
<div class="team-page-content-section-left">
<div class="team-page-image-right">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class = "team-page-text-left">
<div class="team-page-content-title"><a id="Harrison">Harrison Cui</a></div>
<div class="team-page-content-subheading">Computer Science '21</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
If you ever need help with any academic subject, there is no need to go to office hours, if you just ask Harry. Yet I rarely see him actually study. Do not be fooled by your first impression, because Harry has a sassy side to his silent and strong exterior, which comes out in the most unexpected situations. Having grown up in Bay Area, he drinks milk tea for lunch and drinks even more for dinner. In his free time, you can see him rock-climbing or winning at card games against his friends! If you take the time to get to know him, you will realize that he is a friend you can trust and depend on. If you are interested in becoming friends with Harry, email him at 2smart4you@cornell.edu
</p>
</div>
</div>
<div class="team-page-content-section-right">
<div class="team-page-image-left-lastbio">
<img class="team-page-content-image" src="images/amy_fb.jpg">
</div>
<div class="team-page-text-right-lastbio">
<div class="team-page-content-title"><a id="Karen">Karen Zhan</a></div>
<div class="team-page-content-subheading">Environmental Engineering '21</div>
<hr class="yellow-accent-line-left">
<p class="team-page-content-text">
Karen Zhan is currently a sophomore on PD and P&P double majoring in Environment & Sustainability and Info Sci. Her favorite color is blue, and she can usually be found napping somewhere sunny. Now that all the boring obligatory stuff is out of the way, Karen is the most laid back, chill person you’ll meet because she is basically a protagonist out of a YA novel. In her free time, she hangs with pet ducks and chickens, plays guitar and piano, dances, and tries art even though she claims she’s “not that good” at it. BS, Karen. Say hi to her if you run into her, she’s friendly and will probably say hi back.
</p>
</div>
</div>
</div>
<!------------------------ TEAM PAGE CONTENT END ------------------------>
<!------------------------ FOOTER START ------------------------>
<footer>
<div class="footer-wrapper">
<div class="icon-wrapper">
<a class="icon" href=""><img src="http://2018.igem.org/wiki/images/3/30/T--Cornell--Facebook.jpg"></a>
</div>
<div class="icon-wrapper">
<a class="icon" href=""><img src="http://2018.igem.org/wiki/images/0/02/T--Cornell--Twitter.jpg"></a>
</div>
<div class="icon-wrapper">
<a class="icon" href=""><img src="http://2018.igem.org/wiki/images/a/ae/T--Cornell--Instagram.jpg"></a>
</div>
<div class="icon-wrapper icon-wrapper-last">
<a class="icon" href=""><img src="http://2018.igem.org/wiki/images/7/77/T--Cornell--Youtube.jpg"></a>
</div>
</div>
</footer>
<!------------------------ FOOTER END ------------------------>
</body>
</html>