-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
192 lines (184 loc) · 8.05 KB
/
index.html
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Organic Diabetic</title>
<link rel="stylesheet" href="resources/css/style.css">
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css"
>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous">
</script>
</head>
<body>
<div class="container-fluid">
<header>
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<a class="navbar-brand">
<img class="navbar-brand" src="resources/images/Landing Page Logo.png" alt="Logo">
</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav nav-underline ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="#">HOME</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">SHOP</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
CATEGORIES
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Organic Fruits and Vegetables</a></li>
<li><a class="dropdown-item" href="#">Organic Whole Grains</a></li>
<li><a class="dropdown-item" href="#">Organic Lean Proteins</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="#">BLOG</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">RECIPES</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<main class="container">
<div class="card mb-3 border-0" style="max-width: 100%;">
<div class="row g-0 home-intro">
<div class="col-12 col-md-6">
<img src="resources/images/fruits-crepes-breakfast.jpg" class="img-fluid" alt="breakfast image" style="width: 100%; height: 100%;">
</div>
<div class="col-12 col-md-6">
<div class="card-body text-center">
<h1 class="card-title">ORGANIC DIABETIC</h1>
<p class="card-text">Welcome to Organic Diabetic, born from a journey
to a healthier life after a type-2 diabetes diagnosis.
Founded by a determined mom, we're not just a website but a
community aimed at promoting an organic, healthy lifestyle for
those managing diabetes. Explore our organic products and diabetic-friendly
recipes that nourish and satisfy. Join Organic Diabetic, where every choice
leads to a healthier, joyous life.
</p>
<button class="mt-4 p-2 btn btn-success px-3 badge rounded-pill">SHOP NOW</button>
</div>
</div>
</div>
</div>
<div class="text-center m-5 recipes">
<h2 class="text-center mb-5 p-3">Featured Recipes</h2>
<div class="row row-cols-1 row-cols-md-3 g-4">
<div class="col">
<div class="card h-100">
<img src="resources/images/salad-fruit-berry.jpg" class="img-fluid img-thumbnail card-img-top" alt="Salad recipes">
<div class="card-body featured">
<h5 class="card-title">Organic Salads</h5>
<p class="card-text">Organic salad recipes blend the natural flavors of fresh,
chemical-free ingredients into healthy, eco-friendly meals.
They feature a mix of organic greens, fruits, and vegetables,
dressed in a range of homemade vinaigrettes and creams.
These salads are a delicious testament to a sustainable and nutritious lifestyle.
</p>
<a href="" class="btn btn-success px-3 badge rounded-pill">Explore</a>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img src="resources/images/smoothie.jpg" class="img-fluid img-thumbnail card-img-top" alt="Smoothies">
<div class="card-body featured">
<h5 class="card-title">Organic Smoothies</h5>
<p class="card-text">Organic smoothie recipes merge the richness of fresh,
pesticide-free fruits and vegetables into nourishing, eco-conscious drinks.
They combine a variety of organic produce, from berries to leafy greens,
blended smoothly.
They offer a refreshing and wholesome approach to
daily nutrition and environmental responsibility.
</p>
<a href="" class="btn btn-success px-3 badge rounded-pill">Explore</a>
</div>
</div>
</div>
<div class="col">
<div class="card h-100">
<img src="resources/images/granola-grain.jpg" class="img-fluid img-thumbnail card-img-top" alt="Grain bowls">
<div class="card-body featured">
<h5 class="card-title">Grain Bowls</h5>
<p class="card-text">Grain bowl recipes mix wholesome grains with a medley of
nutrient-rich toppings for a balanced, satisfying meal.
They fuse together ingredients like quinoa, brown rice, or farro with fresh vegetables,
lean proteins, and flavorful dressings. These bowls are a versatile and hearty choice
for those seeking both taste and health benefits in their diet.
</p>
<a href="" class="btn btn-success px-3 badge rounded-pill">Explore</a>
</div>
</div>
</div>
</div>
</div>
</main>
<footer>
<div class="text-center border-top h-100">
<div class="row row-cols-3 justify-content-center text-center">
<div class="col border-end">
<h4 class="m-3">Sign Up!</h4>
<p>Subscribe to our newsletter for the latest updates.
</p>
<form action="">
<input class="email-holder px-0" type="email" placeholder="Email Address">
<input class="submit-holder" type="submit" value="Subscribe Now">
</form>
</div>
<div class="col border-end text-center justify-content-evenly">
<h4 class="m-3">Let's Connect</h4>
<div class="row row-cols-4 mt-5">
<i class="bi bi-facebook col"></i>
<i class="bi bi-instagram col"></i>
<i class="bi bi-twitter-x col"></i>
<i class="bi bi-pinterest col"></i>
</div>
</div>
<div class="col">
<h4 class="m-3">Learn More</h4>
<div class="navbar-nav m-3">
<a href="" class="nav-link">Contact</a>
<a href="" class="nav-link">About</a>
<a href="" class="nav-link">Blog</a>
</div>
</div>
</div>
</div>
<hr>
<div class="container text-center">
<p>©️ 2024 Organic Diabetic</p>
</div>
</footer>
</div>
</body>
</html>