Meta Description" name="description" />
<!DOCTYPE html>
<html>
<head>
<title>Macro Test Creative</title>
</head>
<body>
<!-- JavaScript Version -->
<script type="text/javascript">
// The macro ${CLICK_URL} is typically injected here by the ad server
// For local testing, you can manually replace ${CLICK_URL} with a dummy URL like "https://example.com/track?"
var clickMacro = "${CLICK_URL}";
var destination = "https://www.example.com"; // Final landing page
// Construct the full click URL
var finalClickUrl = clickMacro + destination;
document.write('<a href="' + finalClickUrl + '" target="_blank">');
document.write('<img src="https://via.placeholder.com/300x250.png?text=Test+Ad" border="0" alt="Test Ad" width="300" height="250">');
document.write('</a>');
</script>
<!-- NoScript Fallback Version -->
<noscript>
<a href="${CLICK_URL}https://www.example.com" target="_blank">
<img src="https://via.placeholder.com/300x250.png?text=Test+Ad+NoJS" border="0" alt="Test Ad" width="300" height="250">
</a>
</noscript>
</body>
</html> 2
2
1KB
1KB
103.0ms
236.0ms
217.0ms