suna/backend/agent/workspace/index.html

69 lines
2.2 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 Website</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<div class="logo">MyWebsite</div>
<ul class="nav-links">
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="home" class="hero">
<h1>Welcome to Our Website</h1>
<p>Discover amazing content and services</p>
<button class="cta-button">Get Started</button>
</section>
<section id="about" class="about">
<h2>About Us</h2>
<p>We are a passionate team dedicated to creating amazing web experiences.</p>
</section>
<section id="services" class="services">
<h2>Our Services</h2>
<div class="service-cards">
<div class="card">
<h3>Web Design</h3>
<p>Beautiful and responsive websites</p>
</div>
<div class="card">
<h3>Development</h3>
<p>Custom web applications</p>
</div>
<div class="card">
<h3>SEO</h3>
<p>Search engine optimization</p>
</div>
</div>
</section>
<section id="contact" class="contact">
<h2>Contact Us</h2>
<form id="contact-form">
<input type="text" placeholder="Name" required>
<input type="email" placeholder="Email" required>
<textarea placeholder="Your message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
</main>
<footer>
<p>&copy; 2024 MyWebsite. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>