Instagram 10k Followers Lottery
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Instagram Giveaway | RedPanel</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #46b648;
text-align: center;
padding: 20px;
color: #fff;
}
h1 {
font-size: 28px;
}
input, button {
padding: 10px;
width: 80%;
margin: 10px;
border: none;
border-radius: 5px;
}
input {
background-color: #fff;
color: #333;
}
button {
background-color: #ff0000;
color: #fff;
font-weight: bold;
cursor: pointer;
transition: 0.3s ease;
}
button:hover {
background-color: #d40000;
}
#popup {
display: none;
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.5);
position: fixed;
top: 30%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 9999;
text-align: center;
color: #46b648;
}
</style>
</head>
<body>
<h1>🔥 Get a Chance to Win 10K Instagram Followers!</h1>
<p>Fill Your Instagram Username + Phone Number to Enter the Giveaway!</p>
<form onsubmit="verifyYouTube(); return false;">
<input type="text" placeholder="Instagram Username" id="username" required><br>
<input type="tel" placeholder="Phone Number" id="phone" required><br>
<button type="submit">Submit & Verify YouTube Subscription</button>
</form>
<div id="popup">
🎉 You Have Got a Lottery Ticket of **10K Instagram Followers** 🔥 <br>
Result will be announced on **10 March**!
</div>
<script>
function verifyYouTube() {
window.open("https://www.youtube.com/@RedPanel?sub_confirmation=1", "_blank");
setTimeout(() => {
document.getElementById("popup").style.display = "block";
}, 5000);
}
</script>
</body>
</html>