-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (45 loc) · 2.26 KB
/
index.html
File metadata and controls
50 lines (45 loc) · 2.26 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
<!DOCTYPE html>
<html lang="ar" dir="rtl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>مطعم الذوق الرفيع</title>
<style>
body { font-family: Arial, sans-serif; margin:0; padding:0; background:#fff; }
header { background:url('https://source.unsplash.com/1600x600/?restaurant,food') center/cover; color:#fff; text-align:center; padding:60px 20px; }
header h1 { font-size:2.5rem; margin:0; }
header p { margin:10px 0 20px; }
.cta-btn { background:#ff5722; color:#fff; padding:15px 25px; text-decoration:none; border-radius:8px; font-weight:bold; }
section { padding:40px 20px; max-width:900px; margin:auto; }
h2 { color:#333; text-align:center; margin-bottom:20px; }
.menu { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.menu div { background:#f9f9f9; padding:15px; border-radius:8px; text-align:center; }
.menu img { width:100%; border-radius:8px; }
footer { background:#333; color:#fff; text-align:center; padding:20px; }
</style>
</head>
<body>
<header>
<h1>مطعم الذوق الرفيع</h1>
<p>ألذ الأطباق – توصيل سريع – خصم 10% لأول طلب</p>
<a href="https://wa.me/218912345678" class="cta-btn">اطلب الآن عبر واتساب</a>
</header>
<section>
<h2>الأطباق المميزة</h2>
<div class="menu">
<div><img src="https://source.unsplash.com/400x300/?pizza"><p>بيتزا مارغريتا - 25 د.ل</p></div>
<div><img src="https://source.unsplash.com/400x300/?burger"><p>برجر تشيكن - 20 د.ل</p></div>
<div><img src="https://source.unsplash.com/400x300/?pasta"><p>باستا كاربونارا - 22 د.ل</p></div>
<div><img src="https://source.unsplash.com/400x300/?salad"><p>سلطة صحية - 15 د.ل</p></div>
</div>
</section>
<section>
<h2>آراء عملائنا</h2>
<p style="text-align:center;">⭐⭐⭐⭐⭐ "أفضل مطعم في المدينة – الأكل رهيب والتوصيل سريع!"</p>
</section>
<footer>
<p>📍 شارع الاستقلال – طرابلس | 📞 0912345678</p>
<a href="https://wa.me/218912345678" class="cta-btn">اطلب الآن</a>
</footer>
</body>
</html>