-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathc.html
More file actions
96 lines (96 loc) · 3.1 KB
/
c.html
File metadata and controls
96 lines (96 loc) · 3.1 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
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
<!DOCTYPE html>
<html lang="he">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>מַטְעִים לי</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
direction: rtl;
text-align: right;
background-color: #f9f9f9;
margin: 0;
padding: 0;
}
header {
background-color: #673AB7;
color: #fff;
padding: 20px;
text-align: center;
}
nav {
background-color: #512DA8;
color: #fff;
padding: 10px;
text-align: center;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 10px;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.container h1 {
color: #673AB7;
}
.btn {
background-color: #FF4081;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
display: inline-block;
margin-top: 20px;
}
.btn:hover {
background-color: #F50057;
}
.gallery {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
margin-top: 20px;
}
.gallery img {
width: 300px;
height: 200px;
object-fit: cover;
border-radius: 5px;
margin-bottom: 10px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<header>
<h1>מַטְעִים לי</h1>
</header>
<nav>
<a href="#">הצטרפו כמטבח</a>
<a href="#">הצטרפו כלקוח</a>
</nav>
<div class="container">
<h1>ברוכים הבאים למַטְעִים לי</h1>
<p>אתר חלומי שמפגיש שפים מנוסים עם לקוחות שמבינים באוכל.</p>
<p>הצטרפו למאגר הלקוחות והתחברו לצוות השפים כדי ליהנות ממנות בוטיק מותאמות אישית לטעמכם.</p>
<p>הזמינו מנות בוטיק מתוך מגוון רחב של סגנונות מטבח ותרבויות, ותיהנו מחווית אוכל ייחודית ומפתיעה!</p>
<a href="#" class="btn">הצטרפו עכשיו</a>
<div class="gallery">
<img src="https://via.placeholder.com/300x200/FF5722" alt="תמונה 1">
<img src="https://via.placeholder.com/300x200/03A9F4" alt="תמונה 2">
<img src="https://via.placeholder.com/300x200/4CAF50" alt="תמונה 3">
<img src="https://via.placeholder.com/300x200/FFC107" alt="תמונה 4">
</div>
</div>
</body>
</html>