<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ad Creative</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f4f4f4;
}
.ad-container {
position: relative;
width: 300px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
text-align: center;
}
.ad-container img {
width: 100%;
height: auto;
display: block;
}
.ad-content {
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
background: rgba(0, 0, 0, 0.7);
color: white;
padding: 10px 15px;
border-radius: 5px;
}
.ad-button {
display: inline-block;
margin-top: 10px;
padding: 8px 12px;
background-color: #ff6600;
color: white;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
}
</style>
</head>
<body>
<div class="ad-container">
<a href="https://betterandhealthy.com/?utm_source=magnite&utm_medium=banner&utm_campaign=gsm360-magnite-banner&utm_id=gsm360" target="_blank">
<img src="Live testing MBL image-1.png" alt="Ad Image">
</a>
<div class="ad-content">
<p>Exclusive Offer! Grab Now</p>
<a href="https://betterandhealthy.com/?utm_source=magnite&utm_medium=banner&utm_campaign=gsm360-magnite-banner&utm_id=gsm360" class="ad-button" target="_blank">Shop Now</a>
</div>
</div>
</body>
</html>
3
1
3KB
4KB
280.0ms
299.0ms
321.0ms