Example output
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spaghetti Carbonara</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
background: #333;
color: #fff;
padding: 1rem 0;
text-align: center;
}
h1 {
margin: 0;
}
.content {
background: #fff;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
margin: 2rem 0;
}
h2 {
color: #333;
}
ul {
margin: 0;
padding: 0;
list-style: none;
}
li {
margin: 0.5rem 0;
}
.ingredients, .instructions {
margin: 1.5rem 0;
}
.ingredients ul, .instructions ul {
padding-left: 20px;
}
.ingredients li, .instructions li {
margin: 0.5rem 0;
}
.garnish {
font-style: italic;
color: #555;
}
</style>
</head>
<body>
<header>
<h1>Spaghetti Carbonara</h1>
</header>
<div class="container">
<div class="content">
<h2>Description</h2>
<p>Indulge in the creamy, delicious flavors of classic Spaghetti Carbonara. This Italian favorite features perfectly cooked pasta tossed with crispy pancetta, rich egg yolks, and freshly grated Parmesan. The dish is completed with a touch of black pepper and fresh parsley for an elegant and satisfying meal.</p>
<div class="ingredients">
<h2>Ingredients</h2>
<ul>
<li>200g Spaghetti</li>
<li>150g Pancetta, diced</li>
<li>2 large egg yolks</li>
<li>100g Parmesan cheese, freshly grated</li>
<li>2 cloves garlic, minced</li>
<li>Salt and black pepper, to taste</li>
<li>Fresh parsley, chopped (for garnish)</li>
</ul>
</div>
<div class="instructions">
<h2>Instructions</h2>
<ul>
<li>Cook the spaghetti in a large pot of salted boiling water according to package instructions until al dente. Reserve 1/2 cup of pasta water, then drain the pasta.</li>
<li>In a large skillet, cook the pancetta over medium heat until crispy. Add the minced garlic and cook for an additional 1-2 minutes until fragrant.</li>
<li>In a bowl, whisk together the egg yolks and grated Parmesan cheese.</li>
<li>Remove the skillet from the heat and add the drained pasta, tossing to coat with the pancetta and garlic. Slowly stir in the egg yolk mixture, adding a bit of the reserved pasta water if necessary to create a creamy sauce.</li>
<li>Season with salt and black pepper to taste. Garnish with fresh parsley and additional Parmesan cheese if desired. Serve immediately.</li>
</ul>
</div>
<div class="garnish">
<p>Enjoy the rich and creamy texture of Spaghetti Carbonara, with a simple yet elegant presentation that's perfect for any occasion.</p>
</div>
</div>
</div>
</body>
</html>