Sunday, April 28, 2024

Magic Script code For blogger

 



<html lang="en">

<head>

<meta charset="UTF-8"></meta>

<meta content="width=device-width, initial-scale=1.0" name="viewport"></meta>
<title>Download Magic Tricks</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
text-align: center;
padding-top: 50px;
}
h2 {

font-size: 24px;
color: #ff0000; /* Red color */
text-shadow: 2px 2px #888888;
}
form {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
max-width: 400px;
margin: 0 auto;
}
input, select {
width: calc(100% - 22px);
padding: 10px;
margin: 8px 0;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
button {
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
width: 100%;
}
button:hover {
background-color: #45a049;
}
</style>
</head>
<body>
<!-- Placeholder for Logo -->
<form action="javascript:void(0);" id="magicForm" onsubmit="openNewWebsite()">
<h2 style="font-family: 'Comic Sans MS', cursive;">Download Magic Tricks</h2>
<input name="name" placeholder="Your Name" required="" type="text" />
<input name="email" placeholder="Your Email" required="" type="email" />
<select name="trick" required="">
<option disabled="" selected="" value="">Select Magic Trick</option>
<option value="card_trick">Card Trick</option>
<option value="coin_trick">Coin Trick</option>
<option value="mentalism">Mentalism</option>
<option value="illusion">Illusion</option>
</select>
<button type="submit">Download</button>
</form>
<script>
function openNewWebsite() {
window.open('@earnwithmrbuddy', '_blank');
}
</script>
</body>
</html>

Labels:

Saturday, April 27, 2024

Latest Movie Code Script 2024

Download Hd Movies



<!DOCTYPE html

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Image with Play Icon</title>

<style>

 body {

height: 100hv;

  margin: 0;

 background-color: #f0f0f0;

}

.container {

 position: relative;

width: 100%; /* Adjust as needed */

 text-align: center;

 }

 .image-overlay {

position: absolute;

top: 0;

left: 0;

width: 100%;

height: 100%;

background: rgba(0, 0, 0, 0.5);

 display: flex;

 justify-content: center;

 align-items: center;

  opacity: 0;

 transition: opacity 0.3s ease;

 }

 .container:hover .image-overlay {

opacity: 1;

}

.play-icon {

color: #fff;

font-size: 48px;

}

.download-btn {

position: absolute;

bottom: 20px; /* Adjust as needed */

left: 50%;

transform: translateX(-50%);

padding: 20px 40px; /* Adjust as needed */

background-color: #ff5f6d;

color: #fff;

 border: none;

border-radius: 50px; /* Ensure it's a circle */

font-size: 20px; /* Adjust as needed */

cursor: pointer;

 z-index: 1;

transition: background-color 0.3s;

 }

 .download-btn:hover {

background-color: #ff415b;

 }

</style>

</head>

<body>

<div class="container">

<img src="https://m.media-amazon.com/images/M/MV5BMjNlY2UxYTMtYzMzNC00ZGEyLTk4ODUtNTI3ODYxOTY2OWY4XkEyXkFqcGdeQWFybm8@._V1_QL75_UX500_CR0,0,500,281_.jpg" alt="Your Image" width="400" height="300"> <!-- Replace "your-image-url.jpg" with your image URL -->

<div class="image-overlay">

<span class="play-icon">&#9654;</span>

</div>

  <button class="download-btn" onclick="openNewWebsite()">Download</button>

</div>

<script>

  function openNewWebsite() {

window.open(@Earnwithmrbuddy'); // Replace 'place add' with the URL of the website you want to open

  }

</script>

</body>

</html>

Labels:

Sunday, April 21, 2024

Pro Gamer scritp 2024

 Pro Gamer scritp 2024

 





<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Pro Player Verification</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            text-align: center;

            margin: 0;

            padding: 0;

            background-color: #f8f9fa;

        }

        #overlay {

            display: none;

            position: fixed;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background-color: rgba(0, 0, 0, 0.5);

            z-index: 999;

        }

        #confirmation-container {

            display: none;

            position: fixed;

            top: 50%;

            left: 50%;

            transform: translate(-50%, -50%);

            padding: 20px;

            background-color: #fff;

            border-radius: 10px;

            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);

            z-index: 1000;

        }

        #confirmation-message {

            margin-bottom: 20px;

            font-size: 18px;

            color: #333;

        }

        .confirmation-button {

            padding: 10px 20px;

            font-size: 16px;

            cursor: pointer;

            margin: 0 10px;

            border: none;

            border-radius: 5px;

            background-color: #007bff;

            color: #fff;

            transition: background-color 0.3s;

        }

        .confirmation-button:hover {

            background-color: #0056b3;

        }

    </style>

</head>

<body>

    <h1>Welcome!</h1>


    <!-- Pro Player Verification Overlay -->

    <div id="overlay"></div>

    <div id="confirmation-container">

        <p id="confirmation-message">Are you pro player?</p>

        <button class="confirmation-button" onclick="handleConfirmation('@earnwithmrbuddy')">Yes</button>

        <button class="confirmation-button" onclick="handleConfirmation('@earnwithmrbuddy')">No</button>

    </div>


    <script>

        // Show age verification on page load

        window.onload = function() {

            document.getElementById("overlay").style.display = "block";

            document.getElementById("confirmation-container").style.display = "block";

        };


        function handleConfirmation(redirectLink) {

            document.getElementById("overlay").style.display = "none";

            document.getElementById("confirmation-container").style.display = "none";


            // Redirect to the specified link

            window.location.href = redirectLink;

        }

    </script>

</body>

</html>

Labels: