-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexRU.html
303 lines (271 loc) · 8.52 KB
/
indexRU.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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Valge Kõrvits</title>
<link rel="stylesheet" href="styles.css">
<!-- Add Font Awesome CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<style>
/* Adjust position of social icons */
.social-icons {
position: fixed;
top: 20px;
right: 20px;
}
.social-icons a {
color: #fff; /* White */
text-decoration: none;
font-size: 15px; /* Adjust size as needed */
margin-left: 10px;
}
.social-icons a:hover {
color: #CF7C38; /* Soft pastel orange */
}
/* Header and Navigation */
header {
background-color: #000; /* Black */
color: #fff; /* White */
padding: 20px;
text-align: center;
position: relative; /* Add this to position logo */
}
.logo {
order: 1; /* Move logo to the end */
}
.logo {
position: absolute;
top: -20px;
left: 5px;
width: 140px; /* Adjust size as needed */
height: auto;
}
nav {
background-color: #000000; /* blech */
padding: 10px 0;
text-align: center;
border-bottom: 2px solid #000; /* Black */
}
nav a {
color: #333;
text-decoration: none;
margin: 0 15px;
padding: 5px 10px;
border-radius: 5px;
transition: background-color 0.3s;
}
nav a:hover {
background-color: #CF7C38; /* Darker Orange */
}
/* Footer */
footer {
background-color: #000; /* Black */
color: #fff; /* White */
text-align: center;
padding: 20px;
position: fixed;
width: 100%;
bottom: 0;
transition: transform 0.3s ease;
transform: translateY(100%);
}
footer.visible {
transform: translateY(0%);
}
footer a {
color: #fff; /* White */
text-decoration: none;
margin: 0 10px;
}
footer a:hover {
text-decoration: underline;
}
/* Main Sections */
.main-section {
margin: 20px;
padding: 20px;
background-color: #000; /* Black */
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.main-section h2 {
color: #CF7C38; /* Soft pastel orange */
margin-bottom: 20px;
}
.main-section p {
color: #fff; /* White */
line-height: 1.6;
}
.main-section img {
max-width: 100%;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* Product Section */
.product-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
}
.product {
padding: 10px;
background-color: #fff; /* White */
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.product h3 {
color: #CF7C38; /* Soft pastel orange */
}
.product p {
color: #333; /* Dark gray */
}
.product img {
max-width: 100%;
border-radius: 25px;
box-shadow: 0 15px 15px rgba(0, 0, 0, 0.1);
}
/* CSS for navigation arrows */
.prev,
.next {
color: white; /* Set default color */
position: absolute;
top: 50%;
margin-top: -10px;
text-decoration: none; /* Remove underline */
padding: 10px;
}
/* Hover effect */
.prev:hover,
.next:hover {
color: rgb(235, 125, 62); /* Change color on hover */
}
</style>
</head>
<body style="background-color: #000; margin: 0; padding: 0;">
<header>
<div class="container">
<img src="logo.png" alt="Лого" class="logo">
<h1></h1>
<nav>
<ul>
<li><a href="index.html">Главная</a></li>
<li><a href="Menu.html">Меню</a></li>
<li><a href="Catering.html">Кейтеринг</a></li>
<li><a href="products.html">Поп-ап Кофе</a></li>
<li><a href="events.html">Мероприятия</a></li>
<li><a href="shop.html">Выставочный</a></li>
<li><a href="orders.html">Заказы</a></li>
<li><a href="contact.html">Контакт</a></li>
</ul>
</nav>
<!-- Social Icons -->
<div class="social-icons">
<a href="https://www.facebook.com/valgekorvits/?locale=et_EE" target="_blank"><i class="fab fa-facebook-f" style="font-size: 15px; margin-left: 10px;"></i></a>
<a href="https://www.instagram.com/valgekorvits/" target="_blank"><i class="fab fa-instagram" style="font-size: 15px; margin-left: 10px;"></i></a>
<!-- Fienta Logo -->
<a href="https://fienta.com/et/o/valgekorvits" target="_blank"><img src="fienta_logo.png" alt="Лого Fienta" style="width: 15px; height: 15px; margin-left: 10px;"></a>
<!-- Menu Buttons -->
<style>
.menu-buttons button {
background-color: black;
color: #CF7C38;
border: none;
padding: 10px 20px;
margin: 5px;
cursor: pointer;
border-radius: 5px;
}
</style>
</head>
<div class="menu-buttons">
<button onclick="window.location.href='indexEE.html'">EE</button>
<button onclick="window.location.href='index.html'">ENG</button>
<button onclick="window.location.href='indexFIN.html'">FIN</button>
</div>
</div>
</div>
</div>
</header>
<!-- Include Google Translate API script -->
<script type="text/javascript" src="https://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
</html>
<section class="main-section" id="home">
<div class="container">
<h2></h2>
<!-- Image slideshow -->
<div class="slideshow-container">
<img class="home-image" src="cafe.jpg" alt="Кафе">
<img class="home-image" src="ANVA9825.jpg" alt="анва">
<img class="home-image" src="cappucino2.jpg" alt="капучино2">
<!-- Add more images here -->
</div>
<!-- Navigation arrows -->
<a class="prev" onclick="plusSlides(-1)" style="left: 90px;">❮</a>
<a class="next" onclick="plusSlides(1)" style="right: 90px;">❯</a>
</div>
</section>
<!-- Products Section -->
<section class="main-section" id="products">
<div class="container">
<h2>Наши Продукты</h2>
<div class="product-grid">
<div class="product">
<img src="coffee_blend.jpg" alt="Кофейный бленд">
<h3>Яичница и креветки</h3>
<p>Цена: $5.99</p>
</div>
<div class="product">
<img src="hummus.png" alt="хумус">
<h3>Желтый хумус</h3>
<p>Цена: $4.99</p>
</div>
<div class="product">
<img src="Tuna.jpg" alt="Тунец">
<h3>Тирадито из тунца</h3>
<p>Цена: $4.99</p>
</div>
<div class="product">
<img src="rice.jpg" alt="Рис">
<h3>Киноа и много овощей</h3>
<p>Цена: $5.49</p>
</div>
<div class="product">
<img src="ramen.jpg" alt="Рамен">
<h3>Рамен</h3>
<p>Цена: $3.99</p>
</div>
<div class="product">
<img src="pastries.jpg" alt="Выпечка">
<h3>Картофельные хлопья со свининой</h3>
<p>Цена: $2.99</p>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 Valge Kõrvits. Все права защищены.</p>
</div>
</footer>
<!-- JavaScript for slideshow functionality -->
<script>
var slideIndex = 0;
showSlides();
function showSlides() {
var i;
var slides = document.getElementsByClassName("home-image");
for (i = 0; i < slides.length; i++) {
slides[i].style.display = "none";
}
slideIndex++;
if (slideIndex > slides.length) {slideIndex = 1}
slides[slideIndex-1].style.display = "block";
setTimeout(showSlides, 80000); // Change image every 8 seconds
}
function plusSlides(n) {
showSlides(slideIndex += n);
}
</script>
</body>
<script>