-
Notifications
You must be signed in to change notification settings - Fork 95
Expand file tree
/
Copy pathidx.html
More file actions
61 lines (57 loc) · 2.21 KB
/
idx.html
File metadata and controls
61 lines (57 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gourmet Grub - Simple Recipes</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>🍽️ Gourmet Grub 👨🍳</h1>
<p>Simple, Delicious Recipes for Everyone</p>
</header>
<main>
<section class="recipe-card">
<h2>Classic Spaghetti Carbonara 🍝</h2>
<p class="description">A creamy, rich Italian pasta dish made with eggs, hard cheese, cured pork (guanciale or pancetta), and black pepper.</p>
<h3>Ingredients:</h3>
<ul>
<li>200g Spaghetti</li>
<li>100g Guanciale (or Pancetta)</li>
<li>2 large Egg Yolks</li>
<li>50g Pecorino Romano cheese</li>
<li>Black Pepper</li>
</ul>
<a href="#" class="view-recipe-btn">View Full Instructions</a>
</section>
<section class="recipe-card">
<h2>Quick Tomato Soup 🍅</h2>
<p class="description">A comforting and easy-to-make soup, perfect for a cold day, paired with grilled cheese.</p>
<h3>Ingredients:</h3>
<ul>
<li>1 can (400g) Crushed Tomatoes</li>
<li>1 Onion, chopped</li>
<li>2 cloves Garlic, minced</li>
<li>500ml Vegetable Broth</li>
<li>A splash of Cream (optional)</li>
</ul>
<a href="#" class="view-recipe-btn">View Full Instructions</a>
</section>
<section class="recipe-card">
<h2>3-Ingredient Peanut Butter Cookies 🥜</h2>
<p class="description">The simplest, fastest cookie recipe for a quick dessert fix!</p>
<h3>Ingredients:</h3>
<ul>
<li>1 cup Peanut Butter</li>
<li>1 cup Granulated Sugar</li>
<li>1 large Egg</li>
</ul>
<a href="#" class="view-recipe-btn">View Full Instructions</a>
</section>
</main>
<footer>
<p>© 2025 Gourmet Grub. Happy Cooking!</p>
</footer>
</body>
</html>