Meta Description" name="description" />
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>CleverWebServer Test Banner</title>
<meta name="referrer" content="no-referrer">
<style>
html, body {
margin: 0;
padding: 0;
background: #0b0b0c;
color: #fff;
font-family: Arial, sans-serif;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.clever-core-ads {
width: 320px;
height: 250px;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 0 20px rgba(255, 152, 0, 0.4);
background: linear-gradient(180deg, #1a1a1c, #0b0b0c);
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.clever-core-ads:hover {
transform: scale(1.03);
box-shadow: 0 0 30px rgba(255, 152, 0, 0.6);
}
.clever-core-ads img {
max-width: 100%;
max-height: 100%;
border-radius: 12px;
}
.log {
margin-top: 10px;
font-size: 14px;
color: #ccc;
}
</style>
</head>
<body>
<div id="banner" class="clever-core-ads">
<img src="https://dummyimage.com/320x250/ff9800/ffffff&text=CLVR+Test+Banner" alt="Clever Test Ad">
</div>
<div id="log" class="log">CLVR: v2.50.3 • Demo banner loaded</div>
<script>
console.log('CLVR: v2.50.3');
console.log('CLVR: 96431 (Demo)');
console.log('CLVR: UI Loaded');
const banner = document.getElementById('banner');
const log = document.getElementById('log');
banner.addEventListener('click', () => {
console.log('CLVR: Click tracked');
log.innerText = 'CLVR: Click tracked at ' + new Date().toLocaleTimeString();
// имитация перехода
window.open('https://cleverwebserver.com', '_blank');
});
</script>
</body>
</html>
2
2
4KB
3KB
149.0ms
160.0ms
256.0ms