<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Welcome to Our Website</title>
<style>
body { font-family: Arial, sans-serif; margin: 0; padding: 0; }
header { background: #1e90ff; color: white; padding: 60px 20px; text-align: center; }
nav { background: #333; padding: 10px; text-align: center; }
nav a { color: white; text-decoration: none; margin: 0 15px; font-weight: bold; }
section { padding: 60px 20px; max-width: 1100px; margin: auto; }
.services, .testimonials, .blog, .contact { background: #f4f4f4; margin-top: 40px; border-radius: 10px; padding: 40px; }
.service-item, .testimonial, .blog-post { margin-bottom: 20px; }
.footer { background: #222; color: white; text-align: center; padding: 20px; margin-top: 40px; }
input, textarea { width: 100%; padding: 10px; margin-top: 10px; margin-bottom: 20px; }
button { background: #1e90ff; color: white; padding: 10px 20px; border: none; cursor: pointer; }
button:hover { background: #006fd6; }
</style>
</head>
<body>
<header>
<h1>Welcome to Our Amazing Website</h1>
<p>Your trusted source for quality, value, and excellence</p>
</header>
<nav>
<a href="#about">About</a>
<a href="#services">Services</a>
<a href="#testimonials">Testimonials</a>
<a href="#blog">Blog</a>
<a href="#contact">Contact</a>
</nav>
<section id="about">
<h2>About Us</h2>
<p>We are a passionate team dedicated to providing the best service in the industry. Whether you're looking for tech solutions, consulting, or creative content, we are here to serve.</p>
</section>
<section id="services" class="services">
<h2>Our Services</h2>
<div class="service-item">
<h3>Web Design</h3>
<p>Modern, responsive websites tailored to your needs.</p>
</div>
<div class="service-item">
<h3>SEO Optimization</h3>
<p>Improve your visibility and ranking on search engines.</p>
</div>
<div class="service-item">
<h3>Content Creation</h3>
<p>Engaging blog posts, social media, and marketing copy.</p>
</div>
</section>
<section id="testimonials" class="testimonials">
<h2>What Our Clients Say</h2>
<div class="testimonial">
<p>“Absolutely thrilled with the results. Their team is top-notch!” - Sarah L.</p>
</div>
<div class="testimonial">
<p>“Fast, reliable, and very professional.” - Mark D.</p>
</div>
<div class="testimonial">
<p>“The best experience I’ve had with a service provider.” - Angela K.</p>
</div>
</section>
<section id="blog" class="blog">
<h2>Latest Blog Posts</h2>
<div class="blog-post">
<h3>10 Tips for Building a Great Website</h3>
<p>Discover key elements that make a site stand out.</p>
</div>
<div class="blog-post">
<h3>Why SEO Still Matters in 2025</h3>
<p>Learn how proper optimization drives traffic and sales.</p>
</div>
</section>
<section id="contact" class="contact">
<h2>Contact Us</h2>
<form action="#" method="POST">
<input type="text" name="name" placeholder="Your Name" required/>
<input type="email" name="email" placeholder="Your Email" required/>
<textarea name="message" rows="6" placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<div class="footer">
<p>© 2025 Your Company. All rights reserved.</p>
</div>
</body>
</html>
define('DISALLOW_FILE_EDIT', true);
|