<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
background-color: white; /* Set the background color to white */
text-align: center;
color: #FF0000; /* Set text color to red */
padding: 20px;
}
h1 {
font-size: 36px;
margin-top: 50px;
text-transform: uppercase;
}
p {
font-size: 24px;
margin-top: 20px;
}
#verification {
margin-top: 50px;
}
#verification label {
font-size: 18px;
}
#verification button {
background-color: #4CAF50; /* Set the button color to a lighter green */
color: white;
font-size: 18px;
padding: 10px 20px;
border: none;
cursor: pointer;
transition: background-color 0.3s ease; /* Add transition for smooth hover effect */
}
#verification button:hover {
background-color: #45a049; /* Darken button color on hover */
}
</style>
<script>
function openNewPage() {
// Replace the URL below with the desired URL to open in a new tab
var newPageURL = "https://www.youtube.com/@earnwithmrbuddy";
window.open(newPageURL, "_blank");
}
</script>
</head>
<body>
<h1>Unlimited Active Groups Available</h1>
<p>Please verify that you're not a robot to continue:</p>
<div id="verification">
<label for="verificationCheckbox">I am not a robot</label>
<input type="checkbox" id="verificationCheckbox">
<br>
<button onclick="openNewPage()">Human Verification</button>
</div>
</body>
</html>