<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML5 Banner Ad</title>
<style>
.banner {
width: 720px;
height: 90px;
background-color: #ffffff;
border: 1px solid #cccccc;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
justify-content: space-between;
padding: 10px;
font-family: Arial, sans-serif;
color: #333333;
}
.text-container {
width: 60%;
}
.cta-button {
background-color: #014757;
color: #ffffff;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
display: inline-block;
margin-top: 10px;
}
.cta-button:hover {
background-color: #012b39;
}
.logo-placeholder {
width: 20%;
text-align: right;
}
.logo-placeholder img {
max-width: 100%;
height: auto;
}
</style>
</head>
<body>
<div class="banner">
<div class="text-container">
<div style="font-size: 18px; font-weight: bold;">Clinical Monitoring Opportunity!</div>
<div style="font-size: 14px; font-style: italic; margin-top: 5px;">Monitor Digoxin Levels for Patient Safety</div>
<p>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>
<a href="#" class="cta-button">Potentially Fatal Digoxin Toxicity | DIGIFab</a>
</div>
<div class="logo-placeholder">
<img src="path/to/DIGIFab_logo.png" alt="DIGIFab Logo">
</div>
</div>
</body>
</html>
3
1
1KB
2KB
78.0ms
93.0ms
108.0ms