<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Posha - Revolutionizing home cooking.">
<meta name="author" content="Posha Team">
<title>Posha - Coming Soon</title>
<style>
/* Basic Reset */
body, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
font-family: 'Arial', sans-serif;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
background: linear-gradient(135deg, #FF7F50, #FF4500);
color: #fff;
}
h1 {
font-size: 3rem;
margin: 0;
}
p {
font-size: 1.2rem;
margin: 15px 0 30px;
}
.email-box {
display: flex;
justify-content: center;
}
input[type="email"] {
padding: 10px;
font-size: 1rem;
border: none;
border-radius: 5px 0 0 5px;
outline: none;
max-width: 300px;
width: 100%;
}
button {
padding: 10px 20px;
font-size: 1rem;
background: #fff;
color: #FF4500;
border: none;
border-radius: 0 5px 5px 0;
cursor: pointer;
font-weight: bold;
}
button:hover {
background: #FFDAB9;
}
footer {
position: absolute;
bottom: 20px;
width: 100%;
text-align: center;
font-size: 0.9rem;
}
footer a {
color: #FFDAB9;
text-decoration: none;
}
</style>
</head>
<body>
<div>
<h1>Posha is Coming Soon!</h1>
<p>We're working hard to revolutionize home cooking. Stay tuned!</p>
<div class="email-box">
<input type="email" placeholder="Enter your email to get updates" />
<button type="button">Notify Me</button>
</div>
<footer>
<p>© 2024 Posha | <a href="https://posha.com">www.posha.com</a></p>
</footer>
</div>
</body>
</html>