<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Banner Ad</title>
<style>
body {
margin: 0;
padding: 0;
}
.banner {
width: 720px;
height: 90px;
border: 1px solid #000;
display: flex;
align-items: center;
font-family: Arial, sans-serif;
position: relative;
box-sizing: border-box;
}
.logo {
margin-left: 10px;
}
.content {
margin-left: 15px;
flex: 1;
}
.heading {
font-size: 16px;
font-weight: bold;
margin: 0;
}
.subheading {
font-size: 14px;
margin: 0;
}
.text {
font-size: 12px;
margin: 5px 0;
}
.cta {
font-size: 12px;
background-color: #014757;
color: #fff;
padding: 5px 10px;
text-decoration: none;
border-radius: 3px;
display: inline-block;
}
.cta:hover {
background-color: #013143;
}
.cta-container {
margin-top: 5px;
}
</style>
</head>
<body>
<div class="banner">
<img src="https://www.serb.eu/wp-content/themes/serb/img/serb-logo.png" alt="SERB Logo" class="logo" height="70">
<div class="content">
<div>
<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>
<div class="cta-container">
<a href="#" class="cta">Potentially Fatal Digoxin Toxicity | DIGIFab</a>
</div>
</div>
<div>
<p class="heading">Patient Education Opportunity!</p>
<p class="subheading">Recognize Digoxin Toxicity</p>
<p class="text">This patient is on digoxin. Watch for toxicity due to drug interactions, organ function changes, or dehydration. Symptoms include nausea, vomiting, and arrhythmias. Learn more:</p>
<div class="cta-container">
<a href="#" class="cta">Early Recognition of Digoxin Toxicity | DIGIFab</a>
</div>
</div>
<div>
<p class="heading">Clinical Toxicology Pearls!</p>
<p class="subheading">DIGIFab: Vital in Digoxin Toxicity Cases</p>
<p class="text">This patient is on digoxin. Know the signs and risk factors of toxicity. DIGIFab is the only antidote for rapid resolution. Learn about use and dosing here:</p>
<div class="cta-container">
<a href="#" class="cta">DIGIFab Antidote for Digoxin Toxicity | DIGIFab</a>
</div>
</div>
</div>
</div>
</body>
</html>
3
3
1KB
4KB
545.0ms
605.0ms
1,614.0ms