<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Cloud Hosting - Hyperscale</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', sans-serif;
}
body {
background: #0f172a;
color: #ffffff;
}
header {
padding: 20px 60px;
display: flex;
justify-content: space-between;
align-items: center;
}
header h1 {
color: #38bdf8;
}
header a {
color: #fff;
text-decoration: none;
margin-left: 25px;
}
.hero {
display: flex;
align-items: center;
justify-content: space-between;
padding: 80px 60px;
background: linear-gradient(135deg, #0f172a, #020617);
}
.hero-text {
max-width: 550px;
}
.hero-text h2 {
font-size: 46px;
margin-bottom: 20px;
}
.hero-text p {
font-size: 18px;
margin-bottom: 30px;
color: #cbd5f5;
}
.hero-text button {
padding: 14px 30px;
font-size: 16px;
border: none;
border-radius: 6px;
background: #38bdf8;
color: #020617;
cursor: pointer;
}
.hero-text button:hover {
background: #0ea5e9;
}
.pricing {
padding: 80px 60px;
text-align: center;
}
.pricing h2 {
font-size: 36px;
margin-bottom: 50px;
}
.plans {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
}
.plan {
background: #020617;
padding: 35px;
border-radius: 12px;
box-shadow: 0 0 25px rgba(56, 189, 248, 0.15);
}
.plan h3 {
font-size: 22px;
margin-bottom: 15px;
}
.price {
font-size: 34px;
color: #38bdf8;
margin: 20px 0;
}
.plan ul {
list-style: none;
margin-bottom: 25px;
}
.plan ul li {
margin: 10px 0;
color: #cbd5f5;
}
.plan button {
width: 100%;
padding: 12px;
background: #38bdf8;
color: #020617;
border: none;
border-radius: 6px;
cursor: pointer;
}
.plan button:hover {
background: #0ea5e9;
}
footer {
text-align: center;
padding: 20px;
background: #020617;
color: #94a3b8;
}
</style>
</head>
<body>
<header>
<h1>CloudHost</h1>
<nav>
<a href="#">Hosting</a>
<a href="#">Pricing</a>
<a href="#">Support</a>
<a href="#">Login</a>
</nav>
</header>
<section class="hero">
<div class="hero-text">
<h2>Fast & Secure Cloud Hosting</h2>
<p>Launch your website on hyperscale cloud infrastructure with 99.9% uptime, blazing-fast SSD storage, and free SSL.</p>
<button>Get Started</button>
</div>
</section>
<section class="pricing">
<h2>Choose Your Hosting Plan</h2>
<div class="plans">
<div class="plan">
<h3>Single Hosting</h3>
<div class="price">₹149/mo</div>
<ul>
<li>1 Website</li>
<li>50 GB SSD</li>
<li>Free SSL</li>
<li>Weekly Backup</li>
</ul>
<button>Buy Now</button>
</div>
<div class="plan">
<h3>Premium Hosting</h3>
<div class="price">₹299/mo</div>
<ul>
<li>100 Websites</li>
<li>100 GB SSD</li>
<li>Free Domain</li>
<li>Daily Backup</li>
</ul>
<button>Buy Now</button>
</div>
<div class="plan">
<h3>Business Hosting</h3>
<div class="price">₹499/mo</div>
<ul>
<li>Unlimited Websites</li>
<li>200 GB NVMe</li>
<li>Advanced Security</li>
<li>Priority Support</li>
</ul>
<button>Buy Now</button>
</div>
</div>
</section>
<footer>
© 2025 CloudHost. All Rights Reserved.
</footer>
</body>
</html>