-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
56 lines (49 loc) · 2.23 KB
/
Copy pathteam.html
File metadata and controls
56 lines (49 loc) · 2.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meet the Team</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap" rel="stylesheet">
</head>
<body>
<div>
<h1 class="myp" style="text-align: center; color: #002D56; margin-top: 20px;">
Meet Your Pharmacists
</h1>
<p class="subheading">
We aren't just staff- We are your neighbors. Our team lives in Bangalore, shops at the same grocery stores, and cares deeply about the health of our community.
</p>
<div class="team-grid">
<!-- Ayush Bhansari -->
<div class="team-card">
<div class="team-info">
<img src="ayush.png" alt="Dr. Ayush Bhansari" class="doctors">
<h3 class="team-name">Dr. Ayush Bhansari</h3>
<p class="team-role">Head Pharmacist</p>
<p class="team-bio">Ayush has over 15 years of experience and specializes in diabetes management.</p>
</div>
</div>
<!-- Hiren Joshi -->
<div class="team-card">
<div class="team-info">
<img src="hiren.png" alt="Dr. Hiren Joshi" class="doctors">
<h3 class="team-name">Hiren Joshi</h3>
<p class="team-role">Clinical Specialist</p>
<p class="team-bio">Hiren leads our vaccination clinic. He ensures every patient understands their medication before they leave.</p>
</div>
</div>
<!-- Swayam Vora -->
<div class="team-card">
<div class="team-info">
<img src="swayam.png" alt="Dr. Swayam Vora" class="doctors">
<h3 class="team-name">Swayam Vora</h3>
<p class="team-role">Pharmacy Technician</p>
<p class="team-bio">Swayam is an expert in helping patients find copay assistance coupons.</p>
</div>
</div>
</div>
</div>
</body>
</html>