<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Banner</title>
<style>
#banner {
position: relative;
width: 100%;
max-width: 300px;
aspect-ratio: 300/250;
overflow: hidden;
font-family: Helvetica, Arial, sans-serif;
background: #f5f5f5;
}
#banner img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
</style>
</head>
<body>
<div id="banner">
<a href="https://tesvoro.com/dkh?bid_id={CONVERSION_ID}&creative={CREATIVE_ID}&exchange={EXCHANGE_NAME}&domain={APP_DOMAIN}&pub_id={PUBLISHER_ID}"
id="cta"
rel="noopener noreferrer">
<img src="https://media.tesvoro.com/newlogohtml.jpg" alt="Banner Creative">
</a>
</div>
<script>
(function() {
var c = document.getElementById("cta");
c.addEventListener("click", function(e) {
e.preventDefault();
var clickUrl = c.href + "&ts=" + Date.now();
// Fire tracking request (fetch with fallback)
try {
fetch(clickUrl, {
method: "GET",
mode: "no-cors",
keepalive: true
});
} catch (err) {
var img = new Image();
img.src = clickUrl;
}
// Try to open in new tab
var newWindow = window.open(clickUrl, "_blank");
// If blocked, redirect the top window
if (!newWindow || newWindow.closed || typeof newWindow.closed === 'undefined') {
window.top.location = clickUrl;
}
}, { passive: false });
})();
</script>
</body>
</html>
2
2
33KB
32KB
105.0ms
312.0ms
317.0ms