<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Subscription Form</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f3f3f3;
}
h1 {
color: #333;
}
form {
max-width: 400px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
label {
font-weight: bold;
}
select {
width: 100%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 16px;
appearance: none;
background-image: url('https://www.google.com/imgres?imgurl=https%3A%2F%2Fpreviews.123rf.com%2Fimages%2Fdirkercken%2Fdirkercken1405%2Fdirkercken140500232%2F28411371-join-now-by-a-free-subscription-subscribe-now-and-open-your-online-account-today-registration-button.jpg&tbnid=3kcHf4fr-zak5M&vet=12ahUKEwi7g_vR96CFAxV6UqQEHeD8DYcQMygDegQIARB3..i&imgrefurl=https%3A%2F%2Fwww.123rf.com%2Fphoto_28411371_join-now-by-a-free-subscription-subscribe-now-and-open-your-online-account-today-registration-button.html&docid=ysLunKje5jJrsM&w=1300&h=1191&q=free%20subscription&ved=2ahUKEwi7g_vR96CFAxV6UqQEHeD8DYcQMygDegQIARB3'); /* Path to your logo */
background-repeat: no-repeat;
background-position: 10px center;
padding-left: 50px; /* Adjust based on your logo size */
color: #555;
}
button {
background-color: #4CAF50; /* Green */
color: white;
padding: 15px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #45a049; /* Darker Green */
}
</style>
</head>
<body>
<h1>Choose Your Paid Subscriptions Free</h1>
<form action="#">
<label for="subscription">Select a Subscription:</label>
<select id="subscription" name="subscription">
<option value="Netflix">Netflix</option>
<option value="Disney+">Disney+</option>
<option value="Hulu">Hulu</option>
<option value="Spotify">Spotify</option>
<option value="Apple Music">Apple Music</option>
<option value="Tidal">Tidal</option>
<option value="The New York Times">The New York Times</option>
<option value="The Economist">The Economist</option>
<option value="National Geographic">National Geographic</option>
<option value="Peloton Digital">Peloton Digital</option>
<option value="Headspace">Headspace</option>
<option value="Fitbit Premium">Fitbit Premium</option>
<option value="Xbox Game Pass Ultimate">Xbox Game Pass Ultimate</option>
<option value="PlayStation Plus">PlayStation Plus</option>
<option value="Apple Arcade">Apple Arcade</option>
<option value="MasterClass">MasterClass</option>
<option value="Coursera Plus">Coursera Plus</option>
<option value="Skillshare">Skillshare</option>
</select>
<br><br>
<button type="button" onclick="openWebsite()">Free Subscribe</button>
<script>
function openWebsite() {
var subscription = document.getElementById("subscription").value;
var url = ""; // Add your URL for subscription here
switch (subscription) {
case "Netflix":
url = "https://www.youtube.com/@techpk3013";
break;
case "Disney+":
url = "https://www.youtube.com/@techpk3013";
break;
// Add more cases for other subscriptions if needed
default:
url = "https://www.youtube.com/@techpk3013"; // Default URL
}
window.open(url, "_blank");
}
</script>
</form>
</body>
</html>