HTML TEST
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Win a 2.5L Air Fryer | Martmox Giveaway</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 20px;
background-color: #0073e6;
color: white;
}
.container {
max-width: 600px;
margin: auto;
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
color: black;
}
h1 {
color: #ff6600;
}
p {
font-size: 18px;
color: #333;
}
form {
margin-top: 20px;
}
input[type="text"], input[type="email"] {
width: 80%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
background-color: #ff6600;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}
button:hover {
background-color: #cc5500;
}
img {
width: 100%;
border-radius: 10px;
}
</style>
</head>
<body>
<div class="container">
<h1>Win a 2.5L Air Fryer!</h1>
<p>Enter your name and email for a chance to win a brand-new 2.5L Air Fryer! The winner will be announced on [Giveaway End Date].</p>
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<button type="submit">Enter Giveaway</button>
</form>
<p><small>By entering, you agree to receive promotional emails from Martmox.</small></p>
</div>
</body>
</html>
