<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DIGIFab - Clinical Monitoring Opportunity</title>
<style>
body {
margin: 0;
padding: 0;
font-family: sans-serif;
display: flex;
align-items: center;
}
.container {
width: 100%;
display: grid;
grid-template-columns: auto 1fr; /* Allocate space for logo and content */
align-items: center; /* Vertically center content */
}
.logo {
width: 57px;
grid-row: 1;
margin-right: 10px;
}
.content {
grid-row: 1;
display: flex;
flex-direction: column;
line-height: 1; /* Set line height for all text to 1 */
}
.heading {
font-size: 16px; /* Increase heading size */
font-weight: bold;
margin-bottom: 2px;
color: #014757; /* Use button color for emphasis */
}
.subheading {
font-size: 14px; /* Increase subheading size slightly */
font-weight: bold;
margin-bottom: 5px;
}
.text {
font-size: 12px;
}
.button {
background-color: #014757;
color: white;
padding: 1px 3px; /* Minimal padding for compact button */
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
display: inline-block;
margin-top: 5px;
white-space: nowrap; /* Prevent text wrapping within button */
overflow: hidden; /* Hide overflowing text */
text-overflow: ellipsis; /* Add ellipsis (...) if text overflows */
}
</style>
</head>
<body>
<div class="container">
<img class="logo" src="https://serb.com/wp-content/uploads/2022/09/SERB-logo-200x57-1.svg" alt="SERB Logo">
<div class="content">
<p class="heading">Clinical Monitoring Opportunity!</p>
<p class="subheading">Monitor Digoxin Levels for Patient Safety</p>
<p class="text">This patient is on digoxin. Monitoring levels (~6 hours post-dose) is crucial for early detection of life-threatening toxicities. Act now and verify digoxin levels are within therapeutic range to optimize patient care. Click to Learn More:</p>
<a href="https://digifab.health/en-us/digoxin-toxicity/potentially-fatal-digoxin-toxicity.html" class="button">Potentially Fatal Digoxin Toxicity | DIGIFab</a>
</div>
</div>
</body>
</html>
2
2
4KB
11KB
79.0ms
105.0ms
196.0ms