Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
299 changes: 299 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,299 @@
<!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="Welcome to Nimbus Cloud Range - Your digital presence in the cloud">
<title>Nimbus Cloud Range - Welcome</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

/* Header Styles */
header {
background: rgba(255, 255, 255, 0.95);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 100;
}

nav {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-size: 1.8rem;
font-weight: bold;
color: #667eea;
text-decoration: none;
}

.nav-links {
display: flex;
list-style: none;
gap: 2rem;
}

.nav-links a {
color: #333;
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}

.nav-links a:hover {
color: #667eea;
}

/* Hero Section */
.hero {
text-align: center;
padding: 6rem 0;
color: white;
}

.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
animation: fadeInUp 1s ease;
}

.hero p {
font-size: 1.3rem;
margin-bottom: 2rem;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
animation: fadeInUp 1s ease 0.2s backwards;
}

.cta-button {
display: inline-block;
padding: 1rem 2.5rem;
background: white;
color: #667eea;
text-decoration: none;
border-radius: 50px;
font-weight: bold;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
animation: fadeInUp 1s ease 0.4s backwards;
}

.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
background: #f8f9fa;
}

/* About Section */
.about {
background: white;
padding: 5rem 0;
}

.about h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: #667eea;
}

.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-top: 2rem;
}

.feature-card {
padding: 2rem;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
border-radius: 10px;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
font-size: 3rem;
margin-bottom: 1rem;
}

.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #333;
}

.feature-card p {
color: #555;
}

/* Footer */
footer {
background: rgba(255, 255, 255, 0.95);
padding: 2rem 0;
text-align: center;
color: #666;
}

footer p {
margin-bottom: 0.5rem;
}

.social-links {
display: flex;
justify-content: center;
gap: 1.5rem;
margin-top: 1rem;
}

.social-links a {
color: #667eea;
text-decoration: none;
font-size: 1.5rem;
transition: color 0.3s ease;
}

.social-links a:hover {
color: #764ba2;
}

/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

/* Responsive Design */
@media (max-width: 768px) {
.hero h1 {
font-size: 2.5rem;
}

.hero p {
font-size: 1.1rem;
}

.nav-links {
gap: 1rem;
}

.about h2 {
font-size: 2rem;
}

.features {
grid-template-columns: 1fr;
}
}
</style>
</head>
<body>
<!-- Header -->
<header>
<nav class="container">
<a href="#" class="logo">☁️ Nimbus Cloud Range</a>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>

<!-- Hero Section -->
<section id="home" class="hero">
<div class="container">
<h1>Welcome to Nimbus Cloud Range</h1>
<p>Your journey to the cloud starts here</p>
<a href="#about" class="cta-button">Learn More</a>
</div>
</section>

<!-- About Section -->
<section id="about" class="about">
<div class="container">
<h2>What We Offer</h2>
<div class="features">
<div class="feature-card">
<div class="feature-icon">πŸš€</div>
<h3>Fast & Reliable</h3>
<p>Lightning-fast performance with 99.9% uptime guarantee for all your cloud needs.</p>
</div>
<div class="feature-card">
<div class="feature-icon">πŸ”’</div>
<h3>Secure</h3>
<p>Enterprise-grade security with advanced encryption to keep your data safe.</p>
</div>
<div class="feature-card">
<div class="feature-icon">πŸ’‘</div>
<h3>Innovative</h3>
<p>Cutting-edge technology and solutions tailored to your business requirements.</p>
</div>
</div>
</div>
</section>

<!-- Footer -->
<footer id="contact">
<div class="container">
<p>&copy; 2024 Nimbus Cloud Range. All rights reserved.</p>
<p>Building the future, one cloud at a time.</p>
<div class="social-links">
<a href="#" title="GitHub">πŸ“§</a>
<a href="#" title="Twitter">🐦</a>
<a href="#" title="LinkedIn">πŸ’Ό</a>
</div>
</div>
</footer>

<script>
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
</script>
</body>
</html>