<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Patient Education Opportunity!</title>
<style>
body {
margin: 0;
padding: 0;
}
.banner {
width: 720px;
height: 90px;
font-family: Arial, sans-serif;
background-color: #f3f3f3;
border: 1px solid #ccc;
display: flex;
align-items: center;
padding: 10px;
box-sizing: border-box;
}
.logo {
width: 80px;
margin-right: 10px;
}
.content {
display: flex;
flex-direction: column;
justify-content: center;
}
.heading {
font-size: 18px;
font-weight: bold;
}
.subheading {
font-size: 14px;
font-weight: bold;
margin-top: 5px;
}
.text {
font-size: 12px;
margin-top: 5px;
}
.cta-button {
background-color: #014757;
color: white;
padding: 10px;
text-align: center;
border: none;
cursor: pointer;
margin-top: 10px;
text-decoration: none;
display: inline-block;
font-size: 12px;
}
</style>
</head>
<body>
<div class="banner">
<img src="serb-pharma-logo.png" alt="SERB Pharma" class="logo">
<div class="content">
<div class="heading">Patient Education Opportunity!</div>
<div class="subheading">Recognize Digoxin Toxicity</div>
<div 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:
</div>
<a href="#" class="cta-button">Early Recognition of Digoxin Toxicity | DIGIFab</a>
</div>
</div>
</body>
</html>
3
1
1KB
2KB
84.0ms
104.0ms
125.0ms