Example output
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AI-Powered Website Builder</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
header {
background-color: #333;
color: #fff;
padding: 1rem;
text-align: center;
}
.container {
padding: 2rem;
}
.section {
margin-bottom: 2rem;
}
h1 {
font-size: 2rem;
}
button {
padding: 0.5rem 1rem;
border: none;
background-color: #007bff;
color: #fff;
cursor: pointer;
}
.card {
border: 1px solid #ddd;
padding: 1rem;
border-radius: 0.5rem;
margin: 1rem 0;
}
.card h2 {
margin-top: 0;
}
</style>
</head>
<body>
<header>
<h1>AI-Powered Website Builder</h1>
</header>
<div class="container">
<div class="section">
<h2>Features</h2>
<div class="card">
<h2>Drag-and-Drop Interface</h2>
<p>Create professional websites easily with our intuitive drag-and-drop interface.</p>
</div>
<div class="card">
<h2>Customizable Templates</h2>
<p>Choose from a variety of templates tailored to different industries.</p>
</div>
<div class="card">
<h2>AI-Driven Tools</h2>
<p>Utilize our AI logo maker, content generator, and heatmap tool to optimize your site.</p>
</div>
<div class="card">
<h2>Responsive Design</h2>
<p>Ensure your website looks great on both desktop and mobile devices.</p>
</div>
<div class="card">
<h2>SEO and Analytics</h2>
<p>Enhance your site's visibility with built-in SEO tools and track performance with analytics.</p>
</div>
</div>
<div class="section">
<button>Get Started</button>
</div>
</div>
</body>
</html>