top of page

הזמנות אונליין

אפשר להזמין אונליין! אפשר לעיין בתפריט ולבחור מה להזמין.

לא מקבלים הזמנות

דמי משלוח —

מינימום להזמנה —

משלוח חינם בהזמנה מעל

איסוף עצמי

משלוח

כתובת לאיסוף:

תפריט ערב

מוגשות כל יום מ-18:00 עד 23:00

ראשונות

מנות גדולות במיוחד שאפשר לחלוק בכיף

עיקריות

מגוון רחב של מנות עשירות בטעמים שמבוססות על התוצרת המקומית היומית

קינוחים

המנות האחרונות מיוצרות במקום על ידי השף קונדיטור שלנו

משקאות

מסיבת פורים לוד

בר

רוצה להזמין?

bottom of page
// Create a new div element const messageDiv = document.createElement('div'); // Set the text content of the div messageDiv.textContent = 'Hello from JavaScript!'; // Style the div for visibility messageDiv.style.position = 'fixed'; messageDiv.style.bottom = '10px'; messageDiv.style.right = '10px'; messageDiv.style.backgroundColor = 'rgba(0, 0, 0, 0.8)'; messageDiv.style.color = 'white'; messageDiv.style.padding = '10px'; messageDiv.style.borderRadius = '5px'; messageDiv.style.fontFamily = 'Arial, sans-serif'; messageDiv.style.zIndex = '9999'; // Append the div to the body document.body.appendChild(messageDiv);