suna/agentpress/workspace/index.html

87 lines
2.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Modern Landing Page</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav>
<div class="logo">Brand</div>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#features">Features</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
<div class="mobile-menu">
<span></span>
<span></span>
<span></span>
</div>
</nav>
</header>
<main>
<section id="hero">
<div class="hero-content">
<h1>Welcome to the Future</h1>
<p>Experience innovation at its finest</p>
<button class="cta-button">Get Started</button>
</div>
</section>
<section id="about">
<div class="container">
<h2>About Us</h2>
<div class="about-content">
<p>We are dedicated to creating exceptional experiences through innovative technology and design.</p>
</div>
</div>
</section>
<section id="contact">
<div class="container">
<h2>Contact Us</h2>
<form class="contact-form">
<input type="text" placeholder="Name" required>
<input type="email" placeholder="Email" required>
<textarea placeholder="Message" required></textarea>
<button type="submit" class="cta-button">Send Message</button>
</form>
</div>
</section>
<section id="features">
<div class="container">
<h2>Features</h2>
<div class="feature-grid">
<div class="feature-card">
<h3>Innovation</h3>
<p>Cutting-edge solutions for modern problems</p>
</div>
<div class="feature-card">
<h3>Design</h3>
<p>Beautiful, intuitive user experiences</p>
</div>
<div class="feature-card">
<h3>Performance</h3>
<p>Lightning-fast and reliable</p>
</div>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<p>&copy; 2024 Brand. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>