Untitled
user_1095306
plain_text
2 years ago
3.0 kB
9
Indexable
<html>
<head>
<title>Minimalistic Bug Web Design</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
.content {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
.bug-card {
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
padding: 20px;
}
.bug-card h2 {
margin-top: 0;
}
.bug-card p {
margin-bottom: 0;
}
</style>
</head>
<body>
<div class="header">
<h1>Minimalistic Bug Web Design</h1>
</div>
<div class="content">
<div class="bug-card">
<h2>Ladybug</h2>
<p>The ladybug is a small, colorful beetle that is commonly found in gardens.</p>
</div>
<div class="bug-card">
<h2>Butterfly</h2>
<p>The butterfly is a beautiful insect with colorful wings that undergo metamorphosis.</p>
</div>
<div class="bug-card">
<h2>Dragonfly</h2>
<p>The dragonfly is a fast-flying insect with large, transparent wings.</p>
</div>
</div>
</body>
</html>
Code Generated #2: Vibrant Bug Web Design
language-home
Copy code
<html>
<head>
<title>Vibrant Bug Web Design</title>
<style>
body {
background-color: #f2f2f2;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.header {
background-color: #ff6600;
color: #fff;
padding: 20px;
text-align: center;
}
.content {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
.bug-card {
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
padding: 20px;
}
.bug-card h2 {
margin-top: 0;
}
.bug-card p {
margin-bottom: 0;
}
</style>
</head>
<body>
<div class="header">
<h1>Vibrant Bug Web Design</h1>
</div>
<div class="content">
<div class="bug-card">
<h2>Ladybug</h2>
<p>The ladybug is a small, colorful beetle that is commonly found in gardens.</p>
</div>
<div class="bug-card">
<h2>Butterfly</h2>
<p>The butterfly is a beautiful insect with colorful wings that undergo metamorphosis.</p>
</div>
<div class="bug-card">
<h2>Dragonfly</h2>
<p>The dragonfly is a fast-flying insect with large, transparent wings.</p>
</div>
</div>
</body>
</html>Editor is loading...