-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
605 lines (510 loc) · 19.5 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
<!DOCTYPE HTML>
<html>
<head>
<title>SCU Media Lab</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" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-CGFQSPVNJ7"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-CGFQSPVNJ7');
</script>
</head>
<body class="is-preload homepage">
<div id="page-wrapper">
<!-- Header -->
<div id="header-wrapper">
<header id="header" class="container">
<!-- Logo -->
<div id="banner-wrapper">
<div class="col-100 col-100-medium">
<h1><a href="index.html" class="button large icon ">santa clara media lab</a></h1>
</div>
</div>
<!-- Nav -->
<nav id="nav">
<ul>
<li class="current"><a href="index.html">Home</a></li>
<!-- Nav -->
<!--
<li>
<a href="#">Dropdown</a>
<ul>
<li><a href="#">Lorem ipsum dolor</a></li>
<li><a href="#">Magna phasellus</a></li>
<li>
<a href="#">Phasellus consequat</a>
<ul>
<li><a href="#">Lorem ipsum dolor</a></li>
<li><a href="#">Phasellus consequat</a></li>
<li><a href="#">Magna phasellus</a></li>
<li><a href="#">Etiam dolore nisl</a></li>
</ul>
</li>
<li><a href="#">Veroeros feugiat</a></li>
</ul>
</li>
-->
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
</div>
<!-- Banner -->
<div id="banner-wrapper">
<div id="banner" class="box container">
<div class="row">
<div class="col-7 col-12-medium">
<h2>Santa Clara Media Lab</h2>
<p>Researching social media, data science, and human-computer interaction at Santa Clara University</p>
</div>
<div class="col-5 col-12-medium">
<ul>
<li><a href="#" class="button large icon solid fa-arrow-circle-right">Projects</a></li>
<li><a href="#" class="button alt large icon solid fa-question-circle">About</a></li>
</ul>
</div>
</div>
</div>
</div>
<!-- Features -->
<div id="features-wrapper">
<div class="container">
<div class="row">
<div class="col-4 col-12-medium">
<!-- Box -->
<section class="box feature">
<a href="sophie.html" class="image featured"><img src="images/portraits/sophie2.JPG" alt="" /></a>
<div class="inner">
<header>
<h2>Sophie Cichanowicz</h2>
<p>Social Media Team </p>
<h2>Communication (Minor: Retail Studies) '22</h2>
</header>
</div>
</section>
</div>
<div class="col-4 col-12-medium">
<!-- Box -->
<section class="box feature">
<a href="connor.html" class="image featured"><img src="images/portraits/connor1.JPG" alt="" /></a>
<div class="inner">
<header>
<h2>Patrick Connor Callahan</h2>
<p>Data Science Team </p>
<h2>Computer Science (Data Science Emphasis) '22</h2>
</header>
</div>
</section>
</div>
<div class="col-4 col-12-medium">
<!-- Box -->
<section class="box feature">
<a href="bella.html" class="image featured"><img src="images/portraits/bella.JPG" alt="" /></a>
<div class="inner">
<header>
<h2>Bella Mendoza</h2>
<p>Social Media Team </p>
<h2>Political Science, Communication, Spanish '22</h2>
</header>
</div>
</section>
</div>
</div>
</div>
</div>
<!-- Features -->
<div id="features-wrapper">
<div class="container">
<div class="row">
<div class="col-4 col-12-medium">
<!-- Box -->
<section class="box feature">
<a href="chloe.html" class="image featured"><img src="images/portraits/chloe1.JPG" alt="" /></a>
<div class="inner">
<header>
<h2>Chloe Barton</h2>
<p>Social Media Team</p>
<h2>Communication, Psychology '23'</h2>
</header>
</div>
</section>
</div>
<div class="col-4 col-12-medium">
<!-- Box -->
<section class="box feature">
<a href="lauren.html" class="image featured"><img src="images/portraits/lauren1.JPG" alt="" /></a>
<div class="inner">
<header>
<h2>Lauren Xie</h2>
<p>HCI Team </p>
<h2>Web Design, Engineering (Minor: Computer Engineering) '23</h2>
</header>
</div>
</section>
</div>
<div class="col-4 col-12-medium">
<!-- Box -->
<section class="box feature">
<a href="jason.html" class="image featured"><img src="images/portraits/jason2.JPG" alt="" /></a>
<div class="inner">
<header>
<h2>Jason Vu</h2>
<p>Data Science Team</p>
<h2>Web Design and Egineering (Minors: Computer Engineering, Sociology) '24</h2>
</header>
</div>
</section>
</div>
</div>
</div>
</div>
<!-- Features -->
<div id="features-wrapper">
<div class="container">
<div class="row">
<div class="col-4 col-12-medium">
<!-- Box -->
<section class="box feature">
<a href="claire.html" class="image featured"><img src="images/portraits/claire.JPG" alt="" /></a>
<div class="inner">
<header>
<h2>Claire Murphy</h2>
<p>Data Science Team</p>
<h2>Communication '22</h2>
</header>
</div>
</section>
</div>
<div class="col-4 col-12-medium">
<!-- Box -->
<section class="box feature">
<a href="#" class="image featured"><img src="images/portraits/ahira.JPG" alt="" /></a>
<div class="inner">
<header>
<h2>Ahira Foster</h2>
<p>Social Media Team</p>
<h2>Communication '23</h2>
</header>
</div>
</section>
</div>
<div class="col-4 col-12-medium">
<!-- Box -->
<section class="box feature">
<a href="gian.html" class="image featured"><img src="images/portraits/gian1.JPG" alt="" /></a>
<div class="inner">
<header>
<h2>Gian De León Argueta</h2>
<p>Social Media Team</p>
<h2>English '24</h2>
</header>
</div>
</section>
</div>
</div>
</div>
</div>
<!-- Features -->
<div id="features-wrapper">
<div class="container">
<div class="row">
<div class="col-4 col-12-medium">
<!-- Box -->
<section class="box feature">
<a href="albert.html" class="image featured"><img src="images/portraits/albert2.JPG" alt="" /></a>
<div class="inner">
<header>
<h2>Albert Leal</h2>
<p>Data Science Team</p>
<h2>Communication '22</h2>
</header>
</div>
</section>
</div>
<div class="col-4 col-12-medium">
<!-- Box -->
<section class="box feature">
<a href="#" class="image featured"><img src="images/portraits/saundersalazar.JPG" alt="" /></a>
<div class="inner">
<header>
<h2>Saunder Salazar</h2>
<p>HCI Team</p>
<h2>Mechanical Engineering '22</h2>
</header>
</div>
</section>
</div>
<div class="col-4 col-12-medium">
<!-- Box -->
<section class="box feature">
<a href="jess.html" class="image featured"><img src="images/portraits/jessica2.JPG" alt="" /></a>
<div class="inner">
<header>
<h2>Jessica Carrillo</h2>
<p>Social Media Team</p>
<h2>Communication (Minor: Studio Arts) '22</h2>
</header>
</div>
</section>
</div>
</div>
</div>
</div>
<!-- Features -->
<div id="features-wrapper">
<div class="container">
<div class="row">
<div class="col-4 col-12-medium">
<!-- Box -->
<section class="box feature">
<a href="#" class="image featured"><img src="images/portraits/abem.JPG" alt="" /></a>
<div class="inner">
<header>
<h2>Abem Lucas</h2>
<p>Data Science Team</p>
<h2>Computer Science '25</h2>
</header>
</div>
</section>
</div>
<div class="col-4 col-12-medium">
<!-- Box -->
<section class="box feature">
<a href="brian.html" class="image featured"><img src="images/portraits/brian1.JPG" alt="" /></a>
<div class="inner">
<header>
<h2>Brian Hong</h2>
<p>HCI Team</p>
<h2>Biochemistry '22</h2>
</header>
</div>
</section>
</div>
<div class="col-4 col-12-medium">
<!-- Box -->
<section class="box feature">
<a href="ashley.html" class="image featured"><img src="images/portraits/ashley.JPG" alt="" /></a>
<div class="inner">
<header>
<h2>Ashley Pace</h2>
<p>Social Media Team</p>
<h2>Communication, Philosophy '24</h2>
</header>
</div>
</section>
</div>
</div>
</div>
</div>
<!-- Features -->
<div id="features-wrapper">
<div class="container">
<div class="row">
<div class="col-4 col-12-medium">
<!-- Box -->
<section class="box feature">
<a href="jenna.html" class="image featured"><img src="images/portraits/jennashuey.JPG" alt="" /></a>
<div class="inner">
<header>
<h2>Jenna Shuey</h2>
<p>HCI Team</p>
<h2>Computer Science '23</h2>
</header>
</div>
</section>
</div>
<div class="col-4 col-12-medium">
<!-- Box -->
<section class="box feature">
<a href="ryan.html" class="image featured"><img src="images/portraits/ryan.JPG" alt="" /></a>
<div class="inner">
<header>
<h2>Ryan Wong</h2>
<p>Data Science Team</p>
<h2>Computer Science '23</h2>
</header>
</div>
</section>
</div>
<div class="col-4 col-12-medium">
<!-- Box -->
<section class="box feature">
<a href="kathryn.html" class="image featured"><img src="images/portraits/kathryn1.JPG" alt="" /></a>
<div class="inner">
<header>
<h2>Kathryn Papas</h2>
<p>HCI Team</p>
<h2>Communication/Psychology '22</h2>
</header>
</div>
</section>
</div>
</div>
</div>
</div>
<!-- Features -->
<div id="features-wrapper">
<div class="container">
<div class="row">
<div class="col-4 col-12-medium">
<!-- Box -->
<section class="box feature">
<a href="#" class="image featured"><img src="images/portraits/anthony2.JPG" alt="" /></a>
<div class="inner">
<header>
<h2>Anthony Wang</h2>
<p>HCI Team</p>
<h2>Computer Science '23</h2>
</header>
</div>
</section>
</div>
<div class="col-4 col-12-medium">
<!-- Box -->
<section class="box feature">
<a href="#" class="image featured"><img src="images/portraits/grace.JPG" alt="" /></a>
<div class="inner">
<header>
<h2>Grace Tachetti</h2>
<p>Data Science Team</p>
<h2>Computer Science '23</h2>
</header>
</div>
</section>
</div>
<div class="col-4 col-12-medium">
<!-- Box -->
<section class="box feature">
<a href="#" class="image featured"><img src="images/portraits/elliot.JPG" alt="" /></a>
<div class="inner">
<header>
<h2>Elliot Lee</h2>
<p>HCI Team</p>
<h2>Computer Science '23'</h2>
</header>
</div>
</section>
</div>
</div>
</div>
</div>
<!-- Main -->
<div id="main-wrapper">
<div class="container">
<div class="row gtr-200">
<div class="col-4 col-12-medium">
<!-- Sidebar -->
<div id="sidebar">
<section class="widget thumbnails">
<h3>Interesting stuff</h3>
<div class="grid">
<div class="row gtr-50">
<div class="col-6"><a href="#" class="image fit"><img src="images/portraits/group1.JPG" alt="" /></a></div>
<div class="col-6"><a href="#" class="image fit"><img src="images/portraits/group2.JPG" alt="" /></a></div>
<div class="col-6"><a href="#" class="image fit"><img src="images/portraits/xr_officers1.JPG" alt="" /></a></div>
<div class="col-6"><a href="#" class="image fit"><img src="images/portraits/imaginarium1.JPG" alt="" /></a></div>
</div>
</div>
<a href="#" class="button icon fa-file-alt">More</a>
</section>
</div>
</div>
<div class="col-8 col-12-medium imp-medium">
<!-- Content -->
<div id="content">
<section class="last">
<h2>About us</h2>
<p>Our lab focuses on multiple types of media, with particular attention to social media and emerging technologies (VR, AI, etc). </p>
<p> Some of our research approaches include: a) Appreciating and critically examining gen z trends and messages (which are distinct from traditional media theories), b) Critically analyzing new and emerging technology, and c) Addressing bias, hate speech, and toxicity on social media and online communities (e.g., games) </p>
<a href="about.html" class="button icon solid fa-arrow-circle-right">Further info</a>
</section>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<div id="footer-wrapper">
<footer id="footer" class="container">
<div class="row">
<div class="col-3 col-6-medium col-12-small">
<!-- Links -->
<!--<section class="widget links">
<h3>Random Stuff</h3>
<ul class="style2">
<li><a href="#">Etiam feugiat condimentum</a></li>
<li><a href="#">Aliquam imperdiet suscipit odio</a></li>
<li><a href="#">Sed porttitor cras in erat nec</a></li>
<li><a href="#">Felis varius pellentesque potenti</a></li>
<li><a href="#">Nullam scelerisque blandit leo</a></li>
</ul>
</section>-->
</div>
<div class="col-3 col-6-medium col-12-small">
<!-- Links -->
<!--<section class="widget links">
<h3>Random Stuff</h3>
<ul class="style2">
<li><a href="#">Etiam feugiat condimentum</a></li>
<li><a href="#">Aliquam imperdiet suscipit odio</a></li>
<li><a href="#">Sed porttitor cras in erat nec</a></li>
<li><a href="#">Felis varius pellentesque potenti</a></li>
<li><a href="#">Nullam scelerisque blandit leo</a></li>
</ul>
</section>-->
</div>
<div class="col-3 col-6-medium col-12-small">
<!-- Links -->
<!--<section class="widget links">
<h3>Random Stuff</h3>
<ul class="style2">
<li><a href="#">Etiam feugiat condimentum</a></li>
<li><a href="#">Aliquam imperdiet suscipit odio</a></li>
<li><a href="#">Sed porttitor cras in erat nec</a></li>
<li><a href="#">Felis varius pellentesque potenti</a></li>
<li><a href="#">Nullam scelerisque blandit leo</a></li>
</ul>
</section>-->
</div>
<div class="col-3 col-6-medium col-12-small">
<!-- Contact -->
<section class="widget contact last">
<h3>Contact Us</h3>
<ul>
<li><a href="https://twitter.com/scu_medialab" class="icon brands fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="https://github.com/Santa-Clara-Media-Lab" class="icon brands fa-github"><span class="label">Facebook</span></a></li>
<li><a href="https://instagram.com/santaclaramedialab" class="icon brands fa-instagram"><span class="label">Instagram</span></a></li>
</ul>
<p>500 El Camino Real<br />
Santa Clara, CA 95053<br /></p>
</section>
</div>
</div>
<div class="row">
<div class="col-12">
<div id="copyright">
<ul class="menu">
<li>© Santa Clara Media Lab. All rights reserved</li></li>
</ul>
</div>
</div>
</div>
</footer>
</div>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.dropotron.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>