-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmedsync.html
More file actions
51 lines (46 loc) · 2.46 KB
/
Copy pathmedsync.html
File metadata and controls
51 lines (46 loc) · 2.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MedSync - NHHH</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
</head>
<body>
<nav class="navbar">
<ul>
<li><button class="logo-btn"><a href="homepage.html" style="text-decoration: none; background-color: inherit; color: inherit"><img src="logo.png" alt="logo" class="logo"></a></button></li>
<li class="right-side"><button class="search-btn">🔍</button></li>
<li><button class="login-btn">Login</button></li>
<li><button class="baa-btn"><a href="appointment.html" style="text-decoration: none; background-color: inherit; color: inherit">Book an Appointment</a></button></li>
</ul>
</nav>
<div class="main-container">
<h1 class="page-heading">MedSync™: One Trip, All Meds.</h1>
<div style="display: flex; justify-content: center; gap: 40px; margin-bottom: 50px; flex-wrap: wrap;">
<div style="max-width: 400px;">
<h2 style="color: #002D56; margin-bottom: 15px;">How it Works</h2>
<p class="info-text">
Stop making 5 trips to the pharmacy every month. With MedSync, we coordinate with your doctor to align all your refills to a <b>single pick-up date</b> each month.
</p>
<ul class="info-text" style="margin-left: 20px;">
<li>No more running out of meds</li>
<li>We call you a week before to check in</li>
<li>Free monthly medication review</li>
</ul>
</div>
<div class="form-box" style="margin: 0; width: 100%;">
<h3 style="text-align: center; margin-bottom: 20px;">Enroll in MedSync</h3>
<form>
<label class="form-label">Full Name</label>
<input type="text" class="input-field" required>
<label class="form-label">Phone Number</label>
<input type="tel" class="input-field" required>
<button type="submit" class="submit-btn">Request Enrollment</button>
</form>
</div>
</div>
</div>
</body>
</html>