Skip to content

Commit 914c8d6

Browse files
committed
added alumni list
1 parent 2239891 commit 914c8d6

File tree

1 file changed

+46
-10
lines changed

1 file changed

+46
-10
lines changed

people.html

Lines changed: 46 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ <h2>Undergraduate Researchers</h2>
101101
<h4>Delina Mekonnen </h4>
102102
<p>Undergraduate Researcher</p>
103103
<p>Big Data Modeling for Health.</p>
104-
<a href="mailto:[email protected]" >Website</a>
104+
<a href="#" >Website</a>
105105
</div>
106106

107107
</div>
@@ -122,15 +122,51 @@ <h4>Dr. Guest Scholar</h4>
122122

123123
<section class="people-section">
124124
<h2>Alumni </h2>
125-
<div class="people-grid">
126-
<!-- <div class="person-tile">
127-
<img src="https://via.placeholder.com/120x120/D3D3D3/000000?text=Visitor+1" alt="Dr. Guest">
128-
<h4>Dr. Guest Scholar</h4>
129-
<p>MITACS Visiting Researcher (Summer 2025)</p>
130-
<p>From [University/Institution].</p>
131-
<a href="mailto:[email protected]" class="email-link">Email Dr. Guest</a>
132-
</div> -->
133-
</div>
125+
<style>
126+
.alumni-table {
127+
width: 100%;
128+
border-collapse: collapse;
129+
font-family: Arial, sans-serif;
130+
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
131+
border-radius: 8px;
132+
overflow: hidden; /* Ensures the rounded corners are applied */
133+
}
134+
.alumni-table th, .alumni-table td {
135+
padding: 15px;
136+
text-align: left;
137+
border-bottom: 1px solid #e0e0e0;
138+
}
139+
.alumni-table thead tr {
140+
background-color: #007bff;
141+
color: white;
142+
}
143+
.alumni-table tbody tr:nth-child(even) {
144+
background-color: #f8f8f8;
145+
}
146+
.alumni-table tbody tr:hover {
147+
background-color: #e9ecef;
148+
cursor: pointer;
149+
}
150+
.alumni-table td:first-child {
151+
font-weight: bold;
152+
}
153+
</style>
154+
<table class="alumni-table">
155+
<thead>
156+
<tr>
157+
<th>Name</th>
158+
<th>Role in the Swiftware Lab</th>
159+
<th>Position After Graduation</th>
160+
</tr>
161+
</thead>
162+
<tbody>
163+
<tr>
164+
<td>Hakam Attasi</td>
165+
<td>Undergraduate Researcher, Summer 2024</td>
166+
<td>PhD Student @ Oxford</td>
167+
</tr>
168+
</tbody>
169+
</table>
134170
</section>
135171

136172
</main>

0 commit comments

Comments
 (0)