<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.banner {
width: 468px;
height: 60px;
padding: 10px;
border: 1px solid #ccc;
text-align: center;
font-family: Arial, sans-serif;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
display: flex;
flex-direction: column;
justify-content: center;
}
.banner h1 {
font-size: 1.2em;
color: #333;
margin: 0;
}
.banner h2 {
font-size: 1em;
color: #666;
margin: 5px 0;
}
.banner p {
font-size: 0.8em;
color: #333;
margin: 5px 0;
}
.banner .cta-button {
display: inline-block;
padding: 5px 10px;
background-color: #014757;
color: #fff;
text-decoration: none;
border-radius: 3px;
transition: background-color 0.3s ease;
font-size: 0.8em;
}
.banner .cta-button:hover {
background-color: #012f3a;
}
</style>
</head>
<body>
<div class="banner">
<h1>Clinical Monitoring Opportunity!</h1>
<h2>Monitor Digoxin Levels for Patient Safety</h2>
<p>This patient is on digoxin. Monitoring levels (~6 hours post-dose) is crucial for early detection of life-threatening toxicities. Learn More:</p>
<a href="#" class="cta-button">Potentially Fatal Digoxin Toxicity | DIGIFab</a>
</div>
</body>
</html>
1
1
1KB
2KB
103.0ms
120.0ms
103.0ms