| Name | Role | City |
|---|---|---|
| Alice | Designer | Karachi |
| Bob | Engineer | Lahore |
| Carol | PM | Islamabad |
<style>
table.f{border-collapse:collapse;font-family:system-ui,sans-serif;font-size:14px}
table.f th,table.f td{border:1px solid #e5e7eb;padding:8px 12px;text-align:left}
table.f th{background:#f9fafb;font-weight:600}
table.f tr:nth-child(even) td{background:#fafafa}
</style>
<table class="f">
<thead>
<tr><th>Name</th><th>Role</th><th>City</th></tr>
</thead>
<tbody>
<tr><td>Alice</td><td>Designer</td><td>Karachi</td></tr>
<tr><td>Bob</td><td>Engineer</td><td>Lahore</td></tr>
<tr><td>Carol</td><td>PM</td><td>Islamabad</td></tr>
</tbody>
</table>