suna/backend/agent/workspace/index.html

69 lines
2.2 KiB
HTML
Raw Normal View History

2025-04-08 01:35:40 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2025-04-08 02:15:13 +08:00
<title>Modern Website</title>
2025-04-08 01:35:40 +08:00
<link rel="stylesheet" href="styles.css">
</head>
<body>
2025-04-08 02:15:13 +08:00
<header>
<nav>
<div class="logo">MyWebsite</div>
2025-04-08 01:35:40 +08:00
<ul class="nav-links">
2025-04-08 02:15:13 +08:00
<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>
2025-04-08 01:35:40 +08:00
</ul>
2025-04-08 02:15:13 +08:00
</nav>
2025-04-08 01:35:40 +08:00
</header>
2025-04-08 02:15:13 +08:00
<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>
2025-04-08 01:35:40 +08:00
2025-04-08 02:15:13 +08:00
<section id="about" class="about">
<h2>About Us</h2>
<p>We are a passionate team dedicated to creating amazing web experiences.</p>
</section>
2025-04-08 01:35:40 +08:00
2025-04-08 02:15:13 +08:00
<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>
2025-04-08 01:35:40 +08:00
</div>
2025-04-08 02:15:13 +08:00
<div class="card">
<h3>Development</h3>
<p>Custom web applications</p>
2025-04-08 01:35:40 +08:00
</div>
2025-04-08 02:15:13 +08:00
<div class="card">
<h3>SEO</h3>
<p>Search engine optimization</p>
2025-04-08 01:35:40 +08:00
</div>
</div>
2025-04-08 02:15:13 +08:00
</section>
2025-04-08 01:35:40 +08:00
2025-04-08 02:15:13 +08:00
<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>
2025-04-08 01:35:40 +08:00
2025-04-08 02:15:13 +08:00
<footer>
<p>&copy; 2024 MyWebsite. All rights reserved.</p>
2025-04-08 01:35:40 +08:00
</footer>
<script src="script.js"></script>
</body>
</html>