<!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;
height: 90px;
}
.container {
width: 720px;
display: grid;
grid-template-columns: 1fr 250px; /* Adjust width for scrolling text box */
align-items: center;
height: 100%;
}
.logo {
width: 55px;
grid-row: 1;
margin: 4px 10px 0px 2px;
}
.content {
grid-row: 1;
display: flex;
flex-direction: column;
line-height: 1;
margin: 0;
padding: 0;
font-size: 11px;
}
.heading {
font-weight: bold;
margin-bottom: -1px;
color: #014757;
}
.subheading {
font-weight: bold;
margin-bottom: -1px;
}
.text {
margin-bottom: 0;
}
.button {
background-color: #014757;
color: white;
padding: 2px 5px;
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
display: inline-block;
margin-top: 2px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/* New styles for scrolling text box */
.scrolling-text {
grid-row: 1;
overflow-y: scroll;
height: 100%;
padding: 5px;
font-size: 10px; /* Adjust font size as needed */
color: #333;
}
</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 class="scrolling-text">
<p>INDICATIONS AND USAGE...</p>
</div>
</div>
</body>
</html>
2
2
4KB
11KB
146.0ms
190.0ms
241.0ms