<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
padding: 0;
}
.banner {
width: 720px;
height: 90px;
background-color: #ffffff;
display: flex;
align-items: center;
justify-content: space-between;
border: 1px solid #ccc;
font-family: Arial, sans-serif;
box-sizing: border-box;
overflow: hidden;
}
.logo {
height: 100%;
display: flex;
align-items: center;
padding: 0 10px;
}
.content {
flex-grow: 1;
padding: 10px;
display: flex;
flex-direction: column;
justify-content: center;
white-space: normal;
}
.heading {
font-weight: bold;
font-size: 16px;
margin: 0 0 5px 0;
}
.subheading {
font-size: 14px;
margin: 0 0 5px 0;
}
.text {
font-size: 12px;
margin: 0 0 10px 0;
line-height: 1.4;
}
.cta-button {
background-color: #014757;
color: #ffffff;
border: none;
padding: 8px 16px;
text-align: center;
font-size: 14px;
cursor: pointer;
align-self: center;
}
</style>
</head>
<body>
<div class="banner">
<div class="logo">
<!-- Placeholder for SERB Company Logo -->
<img src="placeholder_serb_logo.png" alt="SERB Logo" height="50">
</div>
<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. Learn more:</p>
<button class="cta-button">Potentially Fatal Digoxin Toxicity | DIGIFab</button>
</div>
<div class="logo">
<!-- Placeholder for DIGIFab Logo -->
<img src="placeholder_digifab_logo.png" alt="DIGIFab Logo" height="50">
</div>
</div>
</body>
</html>
5
1
1KB
3KB
95.0ms
104.0ms
195.0ms