-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlunch.html
60 lines (53 loc) · 2.03 KB
/
lunch.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lunch</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="lunch-header">
<h1>Lunch</h1>
</header>
<main>
<p class="intro-text">
Lunch is a midday meal that provides a break from work or daily activities. It's a time to recharge, refuel,
and socialize with others. Whether it's a quick sandwich, a salad, or a warm homemade dish, lunch offers
variety and nourishment. For many, it’s also an opportunity to step away from the routine, take a moment of
relaxation, and enjoy a healthy meal that boosts energy for the rest of the day.
</p>
<div class="food-container">
<div>
<p class="subheading">Lebanese Dishes:</p>
<ul class="food-list">
<li>Mashawi</li>
<li>Tabbouleh</li>
<li>Kebbe</li>
<li>Hommos</li>
<li>Shawarma</li>
<li>Fattoush</li>
<li>Arayes Kafta</li>
</ul>
</div>
<div class="image-container">
<img src="./img/lunch.jpg" alt="Delicious Lebanese Lunch" width="500" height="300">
</div>
</div>
<div class="button-container">
<a href="./schedule.html">
<button class="back-button">Back to Schedule</button>
</a>
</div>
</main>
<footer class="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>