| Linux premium201.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64 Path : /home/burnskfl/granitebaytreecare.com/ |
| Current File : /home/burnskfl/granitebaytreecare.com/index.php |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Business 2026</title>
<style>
body {
margin: 0;
font-family: 'Segoe UI', sans-serif;
background: #0b1d3a;
color: #e6f0ff;
}
header {
background: linear-gradient(90deg, #0b1d3a, #123c7a);
padding: 20px 50px;
display: flex;
justify-content: space-between;
align-items: center;
}
header h1 {
margin: 0;
font-size: 24px;
}
nav a {
color: #cce0ff;
margin-left: 20px;
text-decoration: none;
transition: 0.3s;
}
nav a:hover {
color: #66a3ff;
}
.hero {
padding: 100px 50px;
text-align: center;
}
.hero h2 {
font-size: 48px;
}
.hero p {
max-width: 600px;
margin: auto;
color: #b3ccff;
}
.btn {
margin-top: 20px;
padding: 12px 25px;
background: #1f5eff;
border: none;
color: white;
cursor: pointer;
border-radius: 8px;
}
.section {
padding: 60px 50px;
}
.cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.card {
background: #112b55;
padding: 20px;
border-radius: 12px;
transition: 0.3s;
}
.card:hover {
transform: translateY(-5px);
background: #163a75;
}
footer {
text-align: center;
padding: 20px;
background: #08142a;
}
input, textarea {
width: 100%;
padding: 10px;
margin: 10px 0;
border-radius: 6px;
border: none;
}
</style>
</head>
<body>
<header>
<h1>Business 2026</h1>
<nav>
<a href="#">Home</a>
<a href="#services">Services</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section class="hero">
<h2>Future Business Solutions</h2>
<p>Innovative strategies, AI-driven insights, and scalable systems for the modern enterprise in 2026.</p>
<button class="btn" onclick="scrollToSection('services')">Explore</button>
</section>
<section id="services" class="section">
<h2>Our Services</h2>
<div class="cards">
<div class="card">
<h3>AI Automation</h3>
<p>Automate workflows using advanced artificial intelligence.</p>
</div>
<div class="card">
<h3>Cloud Scaling</h3>
<p>Flexible cloud infrastructure for rapid business growth.</p>
</div>
<div class="card">
<h3>Cyber Security</h3>
<p>Protect your business with next-gen security systems.</p>
</div>
</div>
</section>
<section id="about" class="section">
<h2>About Us</h2>
<p>We are a forward-thinking company focused on delivering next-generation business solutions powered by technology, innovation, and data intelligence.</p>
</section>
<section id="contact" class="section">
<h2>Contact Us</h2>
<form method="POST">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" placeholder="Your Message" required></textarea>
<button class="btn" type="submit">Send Message</button>
</form>
<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$name = htmlspecialchars($_POST['name']);
$email = htmlspecialchars($_POST['email']);
$message = htmlspecialchars($_POST['message']);
echo "<p style='color:lightgreen;'>Thank you, $name. Your message has been received.</p>";
}
?>
</section>
<footer>
<p>© 2026 Business. All rights reserved.</p>
</footer>
<script>
function scrollToSection(id) {
document.getElementById(id).scrollIntoView({ behavior: 'smooth' });
}
</script>
</body>
</html>