<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Try-Fiz | Coming Soon</title>
<style>
body {
font-family: sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f0f0f0;
}
.container {
text-align: center;
}
.title {
font-size: 3em;
margin-bottom: 20px;
}
.description {
font-size: 1.2em;
margin-bottom: 20px;
}
.subscribe {
display: inline-block;
padding: 10px 20px;
background-color: #3498db;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<h1 class="title">Try-Fiz</h1>
<p class="description">We're currently under development, but we'll be fizzing with excitement soon!</p>
<button class="subscribe">Get Notified</button>
</div>
</body>
</html>