-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbreakfast.html
59 lines (54 loc) · 2.21 KB
/
breakfast.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Breakfast</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="breakfast-header">
<h1>The Breakfast</h1>
</header>
<main>
<p class="intro-text">
Breakfast is a vital meal that provides the necessary energy to kickstart the day. It typically includes a
variety of foods such as eggs, toast, fruit, and sometimes cereals or yogurt. A balanced breakfast helps to
improve focus and concentration, stabilizes blood sugar levels, and boosts metabolism. For many, it’s a time to
enjoy a cup of coffee or tea along with the meal, creating a morning ritual that sets the tone for the rest of
the day. Whether it's a simple quick bite or a leisurely meal, breakfast is the perfect way to fuel the body
after a night of rest.
</p>
<div class="food-container">
<div>
<p class="choices-heading">Best Lebanese Breakfast Dishes:</b></u></p>
<ul class="food-list">
<li>Labneh</li>
<li>Manakish Zaatar</li>
<li>Boiled Eggs</li>
<li>Foul</li>
<li>Fatteh</li>
<li>Orange Juice</li>
</ul>
</div>
<div class="image-container">
<img src="./img/Lebanese-breakfasts.jpg" alt="Lebanese breakfast" width="700" height="300">
</div>
</div>
<div class="button-container">
<a href="./schedule.html">
<button class="back-button">Back to Schedule</button>
</a>
</div>
</main>
<footer>
<p>Created by Mohamad Al Ayoubi</p>
<p>For more information, contact us via:</p>
<ul type="none">
<li>Phone: <a href="tel:+96170893180">+961 (70) 893 180</a></li>
<li>Email: <a href="mailto:[email protected]">[email protected]</a></li>
<li>Visit my <a href="https://www.linkedin.com/in/mohamad-al-ayoubi-87271224b/">LinkedIn</a> page.</li>
</ul>
</footer>
</body>
</html>