<!-- Glittery Canva Pro for Free - Blogger-Compatible -->
<style>
body {
margin: 0;
font-family: 'Segoe UI', sans-serif;
background: linear-gradient(-45deg, #ff0080, #7928ca, #2afadf, #f9f586);
background-size: 400% 400%;
animation: gradientBG 15s ease infinite;
color: #fff;
text-align: center;
padding: 50px 20px;
}
@keyframes gradientBG {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
h1 {
font-size: 2.5em;
background: linear-gradient(to right, #f9f586, #ff00cc);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 10px;
}
#status {
font-size: 1.2em;
margin-bottom: 30px;
color: #fff9cc;
}
#clickButton {
background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
border: none;
padding: 20px 40px;
font-size: 1.5em;
color: white;
cursor: pointer;
border-radius: 10px;
transition: all 0.3s ease;
}
#clickButton:hover {
transform: scale(1.05);
background: linear-gradient(135deg, #fc6076 0%, #ff9a44 100%);
}
#finalLink {
display: none;
margin-top: 30px;
font-size: 1.5em;
font-weight: bold;
background: linear-gradient(to right, #fbc2eb, #a6c1ee);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
</style>
<h1>Canva Pro for Free Telegram Channel Link</h1>
<div id="status">Please click on the button below 2 times to unlock your Canva Pro telegram Channel link.</div>
<button id="clickButton" onclick="handleClick()">Click Here</button>
<div id="finalLink">Your Canva Pro Link: <br><a href="https://web.telegram.org/k#.1485990742" target="_blank">https://web.telegram.org/k#.1485990742</a></div>
<script>
let clickCount = 0;
const totalClicks = 10;
const links = [
"https://www.profitableratecpm.com/z4u5tvce4?key=feadb7a83edde19618f0674f14d9eda5",
"https://www.profitableratecpm.com/nq8bbr4b?key=254f1943ebcc19082a1b2f0125e165eb"
];
function handleClick() {
if (clickCount < totalClicks) {
// Open popup redirect
const redirectURL = links[clickCount % links.length];
window.open(redirectURL, "_blank", "width=800,height=600");
clickCount++;
let remaining = totalClicks - clickCount;
document.getElementById("status").innerText =
remaining > 0 ? `Click ${remaining} more time${remaining > 1 ? "s" : ""} to unlock.` : "✅All clicks complete!";
if (clickCount >= totalClicks) {
document.getElementById("clickButton").style.display = "none";
document.getElementById("finalLink").style.display = "block";
}
}
}
</script>
Comments
Post a Comment