-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (64 loc) · 2.23 KB
/
index.html
File metadata and controls
74 lines (64 loc) · 2.23 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
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Delicious Recipes</title>
</head>
<body>
<nav>
<div>
<a href="#home">Home</a>
<a href="#recipes">Recipes</a>
<a href="#about">About</a>
</div>
<div>
<a href="#register">Register</a>
<a href="#login">Login</a>
</div>
</nav>
<section id="recipes">
<!-- Recipe 1 -->
<div class="recipe-card">
<img class="recipe-image" src="recipe1.jpg" alt="Recipe 1">
<div class="recipe-details">
<h3>Spaghetti Carbonara</h3>
<p>A classic Italian pasta dish with eggs, cheese, pancetta, and black pepper.</p>
</div>
</div>
<!-- Recipe 2 -->
<div class="recipe-card">
<img class="recipe-image" src="recipe2.jpg" alt="Recipe 2">
<div class="recipe-details">
<h3>Chicken Alfredo Pasta</h3>
<p>Creamy Alfredo sauce with grilled chicken served over pasta.</p>
</div>
</div>
<!-- Recipe 3 -->
<div class="recipe-card">
<img class="recipe-image" src="recipe3.jpg" alt="Recipe 3">
<div class="recipe-details">
<h3>Veggie Stir-Fry</h3>
<p>Colorful assortment of vegetables stir-fried to perfection.</p>
</div>
</div>
<!-- Recipe 4 -->
<div class="recipe-card">
<img class="recipe-image" src="recipe4.jpg" alt="Recipe 4">
<div class="recipe-details">
<h3>Chocolate Chip Cookies</h3>
<p>Soft and chewy cookies loaded with chocolate chips.</p>
</div>
</div>
<!-- Recipe 5 -->
<div class="recipe-card">
<img class="recipe-image" src="recipe5.jpg" alt="Recipe 5">
<div class="recipe-details">
<h3>Greek Salad</h3>
<p>Fresh salad with tomatoes, cucumbers, olives, feta cheese, and Greek dressing.</p>
</div>
</div>
</section>
</body>
</html>