-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpeople.html
More file actions
118 lines (111 loc) · 6.33 KB
/
people.html
File metadata and controls
118 lines (111 loc) · 6.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>URIL - People</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<header>
<a href="index.html"><img src="logo.png" alt="URIL Logo" class="logo"></a>
<button class="hamburger" onclick="document.querySelector('nav').classList.toggle('open')" aria-label="Menu">☰</button>
<nav>
<a href="index.html">Home</a>
<a href="publications.html">Publications</a>
<a href="people.html" class="active">People</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<main>
<div class="content">
<section class="people-section">
<div class="people-list">
<h2 class="year-header">Principal Investigator</h2>
<div class="students-grid">
<div class="student">
<img src="people/photos/yuchen.png" alt="Yuchen Cui" class="student-image">
<h3 class="student-name"><a href="https://yuchencui.cc/">Yuchen Cui</a></h3>
</div>
</div>
<h2 class="year-header">PhD Students</h2>
<div class="students-grid">
<div class="student">
<img src="people/photos/omar.png" alt="Omar Rayyan" class="student-image">
<h3 class="student-name"><a href="https://orayyan.com">Omar Rayyan</a></h3>
</div>
<div class="student">
<img src="people/photos/xu.png" alt="Xu Yan" class="student-image">
<h3 class="student-name"><a href="https://web.cs.ucla.edu/~xkyan3/">Xu Yan</a></h3>
<p class="student-info" style="font-size:0.72rem;color:#bbb;text-align:center;display:block;margin:0;font-style:normal;">(co-advised)</p>
</div>
</div>
<h2 class="year-header">Master's Students</h2>
<div class="students-grid">
<div class="student">
<img src="people/photos/alp.jpg" alt="Metin Alp Dogan" class="student-image">
<h3 class="student-name">Metin Alp Dogan</h3>
</div>
</div>
<h2 class="year-header">Undergraduate Students</h2>
<div class="students-grid">
<div class="student">
<img src="people/photos/Edward Sun.jpg" alt="Edward Sun" class="student-image">
<h3 class="student-name"><a href="https://edwardosunny.github.io/">Edward Sun</a></h3>
</div>
<div class="student">
<img src="people/photos/william-jiang.jpg" alt="William Jiang" class="student-image">
<h3 class="student-name"><a href="https://williamjiang.dev/">William Jiang</a></h3>
</div>
<div class="student">
<img src="people/photos/Jonathan.jpg" alt="Jonathan Ouyang" class="student-image">
<h3 class="student-name">Jonathan Ouyang</h3>
</div>
<div class="student">
<img src="people/photos/daniel-wu.jpg" alt="Daniel Wu" class="student-image">
<h3 class="student-name"><a href="https://dwu006.github.io/">Daniel Wu</a></h3>
</div>
<div class="student">
<img src="people/photos/yike.jpg" alt="Yike Shi" class="student-image">
<h3 class="student-name"><a href="https://yik3.github.io/Yike-Shi.github.io/">Yike Shi</a></h3>
</div>
<div class="student">
<img src="people/photos/amit.jpg" alt="Amit Rand" class="student-image">
<h3 class="student-name"><a href="https://amitsite.vercel.app/">Amit Rand</a></h3>
</div>
</div>
<h2 class="year-header">Alumni</h2>
<div class="students-grid">
<div class="student">
<img src="people/photos/max.jpg" alt="Maximilian Gilles" class="student-image">
<h3 class="student-name"><a href="https://maximiliangilles.github.io/">Maximilian Gilles</a></h3>
</div>
<div class="student">
<img src="people/photos/aadit.jpg" alt="Aadit Gupta" class="student-image">
<h3 class="student-name">Aadit Gupta</h3>
</div>
<div class="student">
<img src="people/photos/raayan-dhar.jpg" alt="Raayan Dhar" class="student-image">
<h3 class="student-name"><a href="https://raayandhar.github.io/">Raayan Dhar</a></h3>
</div>
<div class="student">
<img src="people/photos/yuanhong.jpeg" alt="Yuanhong Zeng" class="student-image">
<h3 class="student-name">Yuanhong Zeng</h3>
</div>
<div class="student">
<img src="people/photos/soham.jpg" alt="Soham Kulkarni" class="student-image">
<h3 class="student-name"><a href="https://stochasticritic.github.io/">Soham Kulkarni</a></h3>
</div>
<div class="student">
<img src="people/photos/tracey-tay.jpg" alt="Tracey Tay" class="student-image">
<h3 class="student-name">Tracey Tay</h3>
</div>
</div>
</div>
</section>
</div>
</main>
</body>
</html>