-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
1053 lines (1038 loc) · 43.9 KB
/
contact.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>
<!--
Massively by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<script>
//script for google analytics
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-152751847-1");
</script>
<title>Contact</title>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no"
/>
<link rel="stylesheet" href="assets/css/main.css" />
<noscript>
<link rel="stylesheet" href="assets/css/noscript.css"
/></noscript>
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<!-- Header -->
<header id="header">
<a href="index.html" class="logo">About</a>
</header>
<!-- Nav -->
<nav id="nav">
<ul class="links">
<li><a href="index.html">Codeavor</a></li>
<li><a href="sessions.html">Questions & Solutions</a></li>
<li class="active"><a href="contact.html">About</a></li>
<!-- <li><a href="elements_copy.html">Style Guide</a></li> -->
</ul>
<ul class="icons">
<li>
<a href="#" class="icon brands fa-twitter"
><span class="label">Twitter</span></a
>
</li>
<li>
<a href="#" class="icon brands fa-facebook-f"
><span class="label">Facebook</span></a
>
</li>
<li>
<a href="#" class="icon brands fa-instagram"
><span class="label">Instagram</span></a
>
</li>
<li>
<a href="#" class="icon brands fa-github"
><span class="label">GitHub</span></a
>
</li>
<li>
<a href="elements_copy.html" class="icon brands fa-dribbble"
><span class="label">Dribbble</span></a
>
</li>
</ul>
</nav>
<!-- Main -->
<div id="main">
<!-- Post -->
<section class="post">
<h2>Mission Statement</h2>
<blockquote>
<i
>" There's a reason behind every action. When Codeavor was
founded, the vision was a place where people would learn to tackle
the entire interview process from start to end. It is more than a
coding club. Its more than a mock presentation practice platform.
Its more than a technical workshop. We aspire to elevate our group
together to newer heights by providing opportunities to learn and
collaborate amongst a crowd of like minded individuals. Beyond
building everyone to be a technical superstar, each member is
given the chance to lead their own session. Developing confidence
and executive leadership within our community by planning,
designing and running sessions is vital as it empowers each
individual to enter a virtuous cycle of success. As a foundation
of our principles we laid down that our mission was not about
success as an indiviudal. The reason for our Codeavor is success
as a group. "</i
>
- <b><em>Harsha Srikara</em></b>
</blockquote>
<hr />
<div>
<h2>Founder</h2>
<div>
<h3>
Harsha Srikara
<div style="float: right;">
<a
href="https://github.com/harshasrikara"
target="_blank"
class="icon brands fa-lg fa-github"
><span class="label">GitHub</span></a
>
<p style="display: inline;"></p>
<a
href="https://www.linkedin.com/in/harshasrikara/"
target="_blank"
class="icon brands fa-lg fa-linkedin-in"
><span class="label">Linkedin</span></a
>
</div>
</h3>
<p>
<span class="image left"
><a class="image"
><img src="images/profiles/profile.jpg" alt="" /></a></span
>Hi! My name is Harsha Srikara and am a Founder of Codeavor. I
am an undergraduate student at the University of Texas at Dallas
currently double majoring in Computer Science and Mathematics.
My interests primarily lie in the confluence of software
engineering and statistical analysis. This has led me to build a
strong background in the conceptual underpinnings of important
fields such as Data Science, Artificial Intelligence,
Information Retrieval, and Machine Learning. I have previous
experience working in both academic research as well as in
corporate environment. During Spring 2019, I interned as a
neuroanalytics intern at the Center for Brain Health under
Principal Investigator
<a
href="https://brainhealth.utdallas.edu/people/francesca-filbey-phd/"
>Francesca Filbey</a
>. As part of my capstone project in the lab, I developed an end
to end framework for detecting marijuana addiction from applying
machine learning to brain scans. Beginning in the summer of 2019
to present, I worked as a junior software engineer at
Brainspace, an innovation driven, artificial intelligence
powered, information retrieval company. My role involved
designed testing frameworks for the core machine learning
algorithms to benchmark performance and optimize parametrization
of the continuous multi-modal learning system. Apart from work
experience, I am involved with the
<a href="https://www.acmutd.co"
>Association for Computing Machinery</a
>, the largest student organization at UT Dallas as the Director
of Development. My role is build and design innovative software
to support our vibrant student community. Another organization
that I deeply prioritize is the Freshman Mentor Program at UT
Dallas. Working with a leadership team, I’ve coordinated,
designed and ran several soft-skill workshops that train over
1000+ students on effective communication and mentorship
strategies. We seek to empower every freshman on campus to
improve their academic and social standing by pairing them with
a trained upperclassmen that can help them navigate their
challenging first year. In Fall 2019, I launched Codeavor as an
opportunity to share the knowledge, skills and training that I
have accumulated over time to empower more students to reach
greater heights on their road to success.
</p>
</div>
<div style="display: none;">
<!-- Will be display: none; until bio is updated -->
<h3 style="text-align: end;">
Atharv Jain
<div style="float: left;">
<a href="#" class="icon brands fa-lg fa-github"
><span class="label">GitHub</span></a
>
<p style="display: inline;"></p>
<a
href="https://www.linkedin.com/in/atharvjain/"
target="_blank"
class="icon brands fa-lg fa-linkedin-in"
><span class="label">Linkedin</span></a
>
</div>
</h3>
<p>
<span class="image right"
><a class="image"
><img src="images/profiles/atharv.jpeg" alt="" /></a></span
>Say hello to Atharv Jain.
<br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br />
</p>
</div>
</div>
<hr />
<h3 id="meetOurTeam">
Meet our Team
<a
id="reset"
onclick="resetImages();return false;"
style="display: none; float: right;"
class="icon solid fa-lg fa-undo"
><span class="label">Reset</span></a
>
<a
id="tictactoe"
onclick="activateTicTacToeMode();"
style="float: right;"
class="icon solid fa-lg fa-user-secret"
><span class="label">GitHub</span></a
>
</h3>
<div id="tictactoeValue" style="display: none;">Circle</div>
<!-- <span class="image fit"><img src="images/groupphoto.jpg" alt="" /></span> -->
<div class="box alt">
<div class="row gtr-50 gtr-uniform">
<div class="team col-4">
<span class="image fit"
><a class="image"
><img
class="img"
id="ifrit"
onclick="tictactoe('ifrit'); onModalClick('ifritModal'); return false;"
src="images/profiles/atharv.jpeg"
alt=""
/></a>
<p style="float: left; padding: 0; margin: 0;">Atharv Jain</p>
<div style="float: right;">
<a href="#" class="icon brands fa-lg fa-github"
><span class="label">GitHub</span></a
>
<p style="display: inline;"></p>
<a
href="https://www.linkedin.com/in/atharvjain/"
target="_blank"
class="icon brands fa-lg fa-linkedin-in"
><span class="label">Linkedin</span></a
>
</div>
</span>
<div id="ifritModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span
class="close"
onclick="onCloseClick('ifritModal');return false;"
>×</span
>
<div>
<img
style="width: 50%;"
class="img modalImg"
src="images/profiles/atharv.jpeg"
alt=""
/>
<div
style="
float: right;
padding-right: 2%;
width: 45%;
padding-top: 1%;
"
class="modalMainDiv"
>
<h3 style="float: right;" class="modalH3">
Atharv Jain
</h3>
<div class="modalInnerDiv">
<a href="#" class="icon brands fa-lg fa-github"
><span class="label">GitHub</span></a
>
<p style="display: inline;"></p>
<a
href="https://www.linkedin.com/in/atharvjain/"
target="_blank"
class="icon brands fa-lg fa-linkedin-in"
><span class="label">Linkedin</span></a
>
</div>
<p>
Lorem Ipsum has been the industry's standard dummy
text ever since the 1500s, when an unknown printer
took a galley of type and scrambled it to make a type
specimen book. It has survived not only five
centuries, but also the leap into electronic
typesetting, remaining essentially unchanged. It was
popularised in the 1960s with the release of Letraset
sheets containing Lorem Ipsum passages, and more
recently with desktop publishing software like Aldus
PageMaker including versions of Lorem Ipsum
</p>
<p class="modalP"></p>
</div>
</div>
</div>
</div>
</div>
<div class="team col-4">
<span class="image fit"
><a class="image"
><img
class="img"
id="shivani"
onclick="tictactoe('shivani'); onModalClick('shivaniModal');return false;"
src="images/profiles/shivani.jpeg"
alt=""
/></a>
<p style="float: left; padding: 0; margin: 0;">
Shivani Gandhi
</p>
<div style="float: right;">
<a
href="#"
target="_blank"
class="icon brands fa-lg fa-github"
><span class="label">GitHub</span></a
>
<p style="display: inline;"></p>
<a
href="https://linkedin.com/in/shivanirgandhi/"
target="_blank"
class="icon brands fa-lg fa-linkedin-in"
><span class="label">Linkedin</span></a
>
</div>
</span>
<div id="shivaniModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span
class="close"
onclick="onCloseClick('shivaniModal');return false;"
>×</span
>
<div>
<img
style="width: 50%;"
class="img modalImg"
src="images/profiles/shivani.jpeg"
alt=""
/>
<div
style="
float: right;
padding-right: 2%;
width: 45%;
padding-top: 1%;
"
class="modalMainDiv"
>
<h3 style="float: right;" class="modalH3">
Shivani Gandhi
</h3>
<div class="modalInnerDiv">
<a href="#" class="icon brands fa-lg fa-github"
><span class="label">GitHub</span></a
>
<p style="display: inline;"></p>
<a
href="https://www.linkedin.com/in/shivanirgandhi/"
target="_blank"
class="icon brands fa-lg fa-linkedin-in"
><span class="label">Linkedin</span></a
>
</div>
<p></p>
<p class="modalP">
Shivani is a junior majoring in Software Engineering.
She loves basketball and is a huge spurs fan! In her
free time she’s probably eating or trying to learn
something new!
</p>
</div>
</div>
</div>
</div>
</div>
<div class="team col-4">
<span class="image fit"
><a class="image"
><img
class="img"
id="aashish"
onclick="tictactoe('aashish');onModalClick('aashishModal');return false;"
src="images/profiles/aashish.jpeg"
alt=""
/></a>
<p style="float: left; padding: 0; margin: 0;">
Aashish Sharma
</p>
<div style="float: right;">
<a
href="http://github.com/aashish2057/"
target="_blank"
class="icon brands fa-lg fa-github"
><span class="label">GitHub</span></a
>
<p style="display: inline;"></p>
<a
href="https://linkedin.com/in/aashish2057/"
target="_blank"
class="icon brands fa-lg fa-linkedin-in"
><span class="label">Linkedin</span></a
>
</div>
</span>
<div id="aashishModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span
class="close"
onclick="onCloseClick('aashishModal');return false;"
>×</span
>
<div>
<img
style="width: 50%;"
class="img modalImg"
src="images/profiles/aashish.jpeg"
alt=""
/>
<div
style="
float: right;
padding-right: 2%;
width: 45%;
padding-top: 1%;
"
class="modalMainDiv"
>
<h3 style="float: right;" class="modalH3">
Aashish Sharma
</h3>
<div class="modalInnerDiv">
<a
href="https://www.github.com/aashish2057/"
class="icon brands fa-lg fa-github"
><span class="label">GitHub</span></a
>
<p style="display: inline;"></p>
<a
href="https://www.linkedin.com/in/aashish2057/"
target="_blank"
class="icon brands fa-lg fa-linkedin-in"
><span class="label">Linkedin</span></a
>
</div>
<p></p>
<p class="modalP">
Junior CS student at UT Dallas. ACM Ignite &
Education, Co-Op Intern at IBM. Enjoy reading and
learning piano. Goal of spending my life learning from
and with great people to create a positive impact on
technology.
</p>
<iframe src="https://github-readme-stats.vercel.app/api?username=aashish2057&show_icons=true&hide_border=true"></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- Link Break -->
<div class="team col-4">
<span class="image fit"
><a class="image"
><img
class="img"
id="gautam"
onclick="tictactoe('gautam');onModalClick('gautamModal');return false;"
src="images/profiles/gautam.jpg"
alt=""
/></a>
<p style="float: left; padding: 0; margin: 0;">
Gautam Sapre
</p>
<div style="float: right;">
<a
href="https://www.github.com/gautamsapre"
target="_blank"
class="icon brands fa-lg fa-github"
><span class="label">GitHub</span></a
>
<p style="display: inline;"></p>
<a
href="https://www.linkedin.com/in/gautam-sapre/"
target="_blank"
class="icon brands fa-lg fa-linkedin-in"
><span class="label">Linkedin</span></a
>
</div>
</span>
<div id="gautamModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span
class="close"
onclick="onCloseClick('gautamModal');return false;"
>×</span
>
<div>
<img
style="width: 50%;"
class="img modalImg"
src="images/profiles/gautam.jpg"
alt=""
/>
<div
style="
float: right;
padding-right: 2%;
width: 45%;
padding-top: 1%;
"
class="modalMainDiv"
>
<h3 style="float: right;" class="modalH3">
Gautam Sapre
</h3>
<div class="modalInnerDiv">
<a
href="https://www.github.com/gautamsapre"
class="icon brands fa-lg fa-github"
><span class="label">GitHub</span></a
>
<p style="display: inline;"></p>
<a
href="https://www.linkedin.com/in/gautam-sapre/"
target="_blank"
class="icon brands fa-lg fa-linkedin-in"
><span class="label">Linkedin</span></a
>
</div>
<p></p>
<p class="modalP">
Junior at the University of Texas at Dallas pursuing a
bachelors in Computer Science. Working towards getting
an Internship. Enjoys watching films and playing Video
Games (currently addicted to FIFA 20). Also enjoys
playing music and singing.
</p>
<iframe src="https://github-readme-stats.vercel.app/api?username=gautamsapre&show_icons=true&hide_border=true"></iframe>
</div>
</div>
</div>
</div>
</div>
<div class="team col-4">
<span class="image fit"
><a class="image"
><img
class="img"
id="sanjeev"
onclick="tictactoe('sanjeev');onModalClick('sanjeevModal');return false;"
src="images/profiles/sanjeev.jpeg"
alt=""
/></a>
<p style="float: left; padding: 0; margin: 0;">
Sanjeev Penupala
</p>
<div style="float: right;">
<a
href="http://github.com/spenpal2000"
target="_blank"
class="icon brands fa-lg fa-github"
><span class="label">GitHub</span></a
>
<p style="display: inline;"></p>
<a
href="https://www.linkedin.com/in/sanjeev-penupala/"
target="_blank"
class="icon brands fa-lg fa-linkedin-in"
><span class="label">Linkedin</span></a
>
</div>
</span>
<div id="sanjeevModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span
class="close"
onclick="onCloseClick('sanjeevModal');return false;"
>×</span
>
<div>
<img
style="width: 50%;"
class="img modalImg"
src="images/profiles/sanjeev.jpeg"
alt=""
/>
<div
style="
float: right;
padding-right: 2%;
width: 45%;
padding-top: 1%;
"
class="modalMainDiv"
>
<h3 style="float: right;" class="modalH3">
Sanjeev Penupala
</h3>
<div class="modalInnerDiv">
<a
href="http://github.com/spenpal2000"
class="icon brands fa-lg fa-github"
><span class="label">GitHub</span></a
>
<p style="display: inline;"></p>
<a
href="https://www.linkedin.com/in/sanjeev-penupala/"
target="_blank"
class="icon brands fa-lg fa-linkedin-in"
><span class="label">Linkedin</span></a
>
</div>
<p></p>
<p class="modalP">
Hey there! I am currently a junior at UTD in Computer
Science and joined this self-made group to grow both
my tech and soft skills alongside my peers/friends. I
have a playful and sarcastic personality and love
cracking all sorts of jokes around my friends. Some of
hobbies include ping pong, beatboxing, performing
magic tricks, and video games. My core philosophy in
life is striving to help those around me who need it
the most.
</p>
<iframe src="https://github-readme-stats.vercel.app/api?username=spenpal2000&show_icons=true&hide_border=true"></iframe>
</div>
</div>
</div>
</div>
</div>
<div class="team col-4">
<span class="image fit"
><a class="image"
><img
class="img"
id="sivam"
onclick="tictactoe('sivam');onModalClick('sivamModal');return false;"
src="images/profiles/sivam.jpg"
alt=""
/></a>
<p style="float: left; padding: 0; margin: 0;">Sivam Patel</p>
<div style="float: right;">
<a href="#" class="icon brands fa-lg fa-github"
><span class="label">GitHub</span></a
>
<p style="display: inline;"></p>
<a
href="https://www.linkedin.com/in/sivampatel/"
class="icon brands fa-lg fa-linkedin-in"
><span class="label">Linkedin</span></a
>
</div>
</span>
<div id="sivamModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span
class="close"
onclick="onCloseClick('sivamModal');return false;"
>×</span
>
<div>
<img
style="width: 50%;"
class="img modalImg"
src="images/profiles/sivam.jpg"
alt=""
/>
<div
style="
float: right;
padding-right: 2%;
width: 45%;
padding-top: 1%;
"
class="modalMainDiv"
>
<h3 style="float: right;" class="modalH3">
Sivam Patel
</h3>
<div class="modalInnerDiv">
<a href="#" class="icon brands fa-lg fa-github"
><span class="label">GitHub</span></a
>
<p style="display: inline;"></p>
<a
href="https://www.linkedin.com/in/sivampatel/"
target="_blank"
class="icon brands fa-lg fa-linkedin-in"
><span class="label">Linkedin</span></a
>
</div>
<p></p>
<p class="modalP">
Hello, my name is Sivam. I am a junior Computer
Science student at UT Dallas. I have participated in
ACM Projects, worked with a nonprofit as a part of the
EPICS program, and am currently an Experience
Coordinator on the HackUTD team.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- Link Break -->
<div class="team col-4">
<span class="image fit"
><a class="image"
><img
class="img"
id="vamika"
onclick="tictactoe('vamika');onModalClick('vamikaModal');return false;"
src="images/profiles/vamika.jpeg"
alt=""
/></a>
<p style="float: left; padding: 0; margin: 0;">
Vamika Chatlani
</p>
<div style="float: right;">
<a href="#" class="icon brands fa-lg fa-github"
><span class="label">GitHub</span></a
>
<p style="display: inline;"></p>
<a
href="https://www.linkedin.com/in/vamika-chatlani-b844aa16b/"
target="_blank"
class="icon brands fa-lg fa-linkedin-in"
><span class="label">Linkedin</span></a
>
</div>
</span>
<div id="vamikaModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span
class="close"
onclick="onCloseClick('vamikaModal');return false;"
>×</span
>
<div>
<img
style="width: 50%;"
class="img modalImg"
src="images/profiles/vamika.jpeg"
alt=""
/>
<div
style="
float: right;
padding-right: 2%;
width: 45%;
padding-top: 1%;
"
class="modalMainDiv"
>
<h3 style="float: right;" class="modalH3">
Vamika Chatlani
</h3>
<div class="modalInnerDiv">
<a href="#" class="icon brands fa-lg fa-github"
><span class="label">GitHub</span></a
>
<p style="display: inline;"></p>
<a
href="https://www.linkedin.com/in/vamika-chatlani-b844aa16b/"
target="_blank"
class="icon brands fa-lg fa-linkedin-in"
><span class="label">Linkedin</span></a
>
</div>
<p></p>
<p class="modalP">
My name is Vamika Chatlani and I am a junior at UTD. I
have been coding for about 4 years. I hope to have a
job related to music in the future.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="team col-4">
<span class="image fit"
><a class="image"
><img
class="img"
id="sanjana"
onclick="tictactoe('sanjana');onModalClick('sanjanaModal');return false;"
src="images/profiles/sanjana.jpg"
alt=""
/></a>
<p style="float: left; padding: 0; margin: 0;">
Sanjana Sivakumar
</p>
<div style="float: right;">
<a href="#" class="icon brands fa-lg fa-github"
><span class="label">GitHub</span></a
>
<p style="display: inline;"></p>
<a
href="https://www.linkedin.com/in/sanjana-sivakumar/"
target="_blank"
class="icon brands fa-lg fa-linkedin-in"
><span class="label">Linkedin</span></a
>
</div>
</span>
<div id="sanjanaModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span
class="close"
onclick="onCloseClick('sanjanaModal');return false;"
>×</span
>
<div>
<img
style="width: 100%;"
class="img modalImg"
src="images/profiles/sanjana.jpg"
alt=""
/>
<div style="" class="modalMainDiv">
<h3
style="float: left; display: block;"
class="modalH3"
>
Sanjana Sivakumar
</h3>
<div
style="float: right; display: block;"
class="modalInnerDiv"
>
<a href="#" class="icon brands fa-lg fa-github"
><span class="label">GitHub</span></a
>
<p style="display: inline;"></p>
<a
href="https://www.linkedin.com/in/sanjana-sivakumar/"
target="_blank"
class="icon brands fa-lg fa-linkedin-in"
><span class="label">Linkedin</span></a
>
</div>
<p></p>
<p style="display: inline-block;" class="modalP">
Sanjana is a junior majoring in Computer Science.
She's very actively involved in extra-curricular
organizations and is an officer in HackUTD as a
logistics coordinator. She has also on numerous
occasions been named as student of the year for the
Society of Women Engineers. When it comes to peanut
butter it has to be creamy not crunchy.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="team col-4">
<span class="image fit"
><a class="image"
><img
class="img"
id="anirudh"
onclick="tictactoe('anirudh');onModalClick('anirudhModal');return false;"
src="images/profiles/anirudh.jpeg"
alt=""
/></a>
<p style="float: left; padding: 0; margin: 0;">
Anirudh Emmadi
</p>
<div style="float: right;">
<a href="#" class="icon brands fa-lg fa-github"
><span class="label">GitHub</span></a
>
<p style="display: inline;"></p>
<a
href="https://www.linkedin.com/in/anirudhemmadi/"
target="_blank"
class="icon brands fa-lg fa-linkedin-in"
><span class="label">Linkedin</span></a
>
</div>
</span>
<div id="anirudhModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span
class="close"
onclick="onCloseClick('anirudhModal');return false;"
>×</span
>
<div>
<img
style="width: 50%;"
class="img modalImg"
src="images/profiles/anirudh.jpeg"
alt=""
/>
<div
style="
float: right;
padding-right: 2%;
width: 45%;
padding-top: 1%;
"
class="modalMainDiv"
>
<h3 style="float: right;" class="modalH3">
Anirudh Emmadi
</h3>
<div class="modalInnerDiv">
<a href="#" class="icon brands fa-lg fa-github"
><span class="label">GitHub</span></a
>
<p style="display: inline;"></p>
<a
href="https://www.linkedin.com/in/anirudhemmadi/"
target="_blank"
class="icon brands fa-lg fa-linkedin-in"
><span class="label">Linkedin</span></a
>
</div>
<p></p>
<p class="modalP">
Anirudh is a junior majoring in Computer Science. He
is enthusiastic about bringing his ideas into reality
and is really passionate about making a project that
is useful and feasible for everyone. He likes
participating in hack-a-thons and has won 3 of them in
the past year. Playing a video game (CS:GO) or
watching a movie is something he likes to do in his
free time.
</p>
<iframe src="https://github-readme-stats.vercel.app/api?username=aemmadi&show_icons=true&hide_border=true"></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<hr />
</section>
</div>
<!-- Footer -->
<footer id="footer">
<section>
<form
class="contact2-form validate-form"
method="POST"
action="https://formspree.io/gautamsapre@gmail.com"
>
<div class="fields">
<div class="field">
<label for="name">Name</label>
<input type="text" name="name" id="name" />
</div>
<div class="field">
<label for="email">Email</label>
<input type="text" name="email" id="email" />
</div>
<div class="field">
<label for="message">Message</label>
<textarea name="message" id="message" rows="3"></textarea>
</div>
</div>
<ul class="actions">
<li><input type="submit" value="Send Message" /></li>
</ul>
</form>
</section>
<section class="split contact">
<section class="alt">
<h3>Address</h3>
<p>
3000 Northside Blvd<br />
Texas, TX 75080
</p>
</section>
<section>
<h3>Phone</h3>
<p><a href="#">(732) 986-5731</a></p>
</section>