-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
115 lines (104 loc) · 3.35 KB
/
index.html
File metadata and controls
115 lines (104 loc) · 3.35 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!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="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
<title>Cooking Recipe website</title>
</head>
<body>
<header>
<div class="logo">
<h1>Cooking<span>Recipes</span></h1>
</div>
<nav class="navbar">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Recipes</a></li>
</ul>
</nav>
</header>
<div class="home">
<div class="home-content">
<h3>Cooking Recipes</h3>
<p class="home-parag">
Welcome to our cooking recipes website! Here, you'll find a vast
collection of delicious and easy-to-follow recipes that are from
Guyana.
</p>
<div class="btn">
<h4>Join Us</h4>
</div>
</div>
<div class="home-img">
<img src="./assets/home_img.png" alt="home-img" />
</div>
</div>
<div class="about">
<div class="about-content">
<p class="food-parag">
Welcome to our cooking recipes website! Here, you'll find a vast
collection of delicious and easy-to-follow recipes that are from
Guyana.
<br />
<br />
Below you'll see some of our dishes that we have prepared for you.
</p>
</div>
<div class="recipes">
<div class="recipe">
<img src="./assets/Cassava-eggball.webp" alt="Cassava-eggball" />
<div class="recipe-content">
<p>Cassava-eggball.</p>
</div>
</div>
<div class="recipe">
<img src="./assets/Fried-Rice.jpg" alt="Fried-Rice" />
<div class="recipe-content">
<p>Fried-rice.</p>
</div>
</div>
<div class="recipe">
<img src="./assets/Guyanese-Cook-up-500x500.webp" alt="recipe3" />
<div class="recipe-content">
<p>Guyanese Cook-up.</p>
</div>
</div>
<div class="recipe">
<img src="./assets/roti_curry.jpg" alt="recipe4" />
<div class="recipe-content">
<p>Roti And Curry chicken.</p>
</div>
</div>
</div>
</div>
<div class="quote-section">
<p>
"One cannot think well, love well, sleep well, if one has not dined
well. One cannot think well, love well, sleep well, if one has not dined
well."
</p>
</div>
<div class="call-to-action">
<div class="call-content">
<div class="cta">
<h3>Call to action! It's time!</h3>
<p>Sign up to our website and get the best food recipes delivered to your inbox.</p>
</div>
<div class="sign-up-btn">
<h4>Sign up</h4>
</div>
</div>
</div>
<footer>
<p>Copyright © 2023 Cooking Recipes</p>
</footer>
</body>
</html>