| 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/needhamtreecare.com/ |
| Current File : /home/burnskfl/needhamtreecare.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>AI 2026</title>
<style>
body {
margin: 0;
font-family: 'Segoe UI', sans-serif;
background: #f5f7fa;
color: #1a1a1a;
}
header {
background: #ffffff;
padding: 20px 50px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
header h1 {
margin: 0;
font-size: 24px;
}
nav a {
color: #333;
margin-left: 20px;
text-decoration: none;
transition: 0.3s;
}
nav a:hover {
color: #666;
}
.hero {
padding: 100px 50px;
text-align: center;
background: linear-gradient(120deg, #ffffff, #e6ebf2);
}
.hero h2 {
font-size: 48px;
}
.hero p {
max-width: 600px;
margin: auto;
color: #555;
}
.btn {
margin-top: 20px;
padding: 12px 25px;
background: #1a1a1a;
border: none;
color: white;
cursor: pointer;
border-radius: 8px;
transition: 0.3s;
}
.btn:hover {
background: #333;
}
.section {
padding: 60px 50px;
}
.cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.card {
background: #ffffff;
padding: 25px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(0,0,0,0.08);
transition: 0.3s;
}
.card:hover {
transform: translateY(-8px);
box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.card h3 {
margin-top: 0;
}
.footer {
text-align: center;
padding: 20px;
background: #ffffff;
margin-top: 40px;
}
input, textarea {
width: 100%;
padding: 10px;
margin: 10px 0;
border-radius: 6px;
border: 1px solid #ccc;
}
</style>
</head>
<body>
<header>
<h1>AI 2026</h1>
<nav>
<a href="#">Home</a>
<a href="#tech">Technology</a>
<a href="#vision">Vision</a>
<a href="#contact">Contact</a>
</nav>
</header>
<section class="hero">
<h2>The Future of Artificial Intelligence</h2>
<p>Exploring next-generation AI systems, automation, and human-machine synergy shaping the world in 2026.</p>
<button class="btn" onclick="goTo('tech')">Discover</button>
</section>
<section id="tech" class="section">
<h2>AI Technologies</h2>
<div class="cards">
<div class="card">
<h3>Neural Systems</h3>
<p>Advanced deep learning architectures powering intelligent decisions.</p>
</div>
<div class="card">
<h3>Autonomous AI</h3>
<p>Self-learning systems adapting in real-time environments.</p>
</div>
<div class="card">
<h3>AI Security</h3>
<p>Protecting digital ecosystems using intelligent threat detection.</p>
</div>
</div>
</section>
<section id="vision" class="section">
<h2>Our Vision</h2>
<p>We envision a world where artificial intelligence enhances human capability, drives innovation, and creates sustainable digital ecosystems.</p>
</section>
<section id="contact" class="section">
<h2>Contact AI Team</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</button>
</form>
<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$name = htmlspecialchars($_POST['name']);
echo "<p style='color:green;'>Welcome to AI 2026, $name. Message received.</p>";
}
?>
</section>
<div class="footer">
<p>© 2026 AI Future. All rights reserved.</p>
</div>
<script>
function goTo(id) {
document.getElementById(id).scrollIntoView({ behavior: 'smooth' });
}
</script>
</body>
</html>