-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommunity.html
More file actions
60 lines (53 loc) · 2.19 KB
/
Copy pathcommunity.html
File metadata and controls
60 lines (53 loc) · 2.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Community</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 class="main-content">
<h1 class="company-name" style="text-align: center; color: #002D56; margin-top: 20px;">
Community & Events
</h1>
<p class="intro-text">
Healthcare happens outside the pharmacy, too. We host monthly events to keep our neighborhood active, informed, and healthy.
</p>
<!-- First Event -->
<div class="event1">
<img src="comm-photo-1.png" alt="Flu Shot Drive" class="event-img">
<div class="event-text">
<p class="event-date">Upcoming: Feb 14th</p>
<h2 class="event-title">Annual Flu Shot Drive-Thru</h2>
<p>
Get protected! We are setting up a tent in the parking lot for quick, easy, and safe flu shots. No appointment required.
</p>
</div>
</div>
<!-- Second Event -->
<div class="event2">
<img src="comm-photo-2.png" alt="5K Run" class="event-img">
<div class="event-text">
<p class="event-date">Past Event: Sept 1st</p>
<h2 class="event-title">Charity Heart Run 5K</h2>
<p>
Thank you to everyone who joined us! Together we raised over ₹50,000 in funds.
</p>
</div>
</div>
<!-- Third Event -->
<div class="event3">
<img src="comm-photo-3.jpg" alt="Senior Day" class="event-img">
<div class="event-text">
<p class="event-date">Weekly: Every Tuesday</p>
<h2 class="event-title">Senior Wellness Mornings</h2>
<p>
Seniors 65+ get a 10% discount on all vitamins every Tuesday. Come by for a blood pressure check.
</p>
</div>
</div>
</div>
</body>
</html>