body {
font-family: Arial, sans-serif;
background-color: #8b0000; /* Dark Red background */
margin: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
color: #fff; /* White text color */
}

.container {
text-align: center;
max-width: 600px;
background-color: #8b0000; /* Dark Red background */
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

button {
color: #fff;
padding: 10px 20px;
font-size: 16px;
border: none;
margin: 10px;
cursor: pointer;
border-radius: 8px;
transition: background-color 0.5s;
}

#subscribeBtn {
background: linear-gradient(45deg, #ff0000, #ff8000, #ffff00, #80ff00, #00ff00, #00ff80, #00ffff, #0080ff, #0000ff);
}

#followBtn {
background: linear-gradient(45deg, #00ff00, #00ff80, #00ffff, #0080ff, #0000ff, #8000ff, #ff00ff, #ff0080, #ff0000);
}

a {
text-decoration: none;
color: #007bff;
padding: 10px 20px;
font-size: 16px;
border: none;
border-radius: 4px;
margin-top: 20px;
display: inline-block;
}

DenDenZ Script Library

DenDenZ Script Library

Subscribe to my YouTube and follow me on TikTok to access the link:

Subscribe To Me On YouTube
Follow Me On TikTok

document.getElementById(“subscribeBtn”).addEventListener(“click”, function() {
// Add your YouTube subscribe link here
window.open(“https://youtube.com/@DenDenZZZ?si=NVDPLp7I-GddUJ4T”, “_blank”);
});

document.getElementById(“followBtn”).addEventListener(“click”, function() {
// Add your TikTok profile link here
window.open(“https://www.tiktok.com/@dendenzonyoutube?_t=8hctqLV7BcG&_r=1”, “_blank”);
});

// This function is called when both buttons are clicked
function showAccessLink() {
document.getElementById(“accessLink”).style.display = “inline-block”;
}

// Simulate that both actions are completed (you would replace this with actual checks)
// For now, it shows the link after 1 minute to simulate a delay
setTimeout(function() {
showAccessLink();
// Redirect to the specified link after 1 minute
window.location.href = “https://pastebin.com/raw/Hj8M6znt”;
}, 60000);

Design a site like this with WordPress.com
Get started