-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorders.html
More file actions
537 lines (520 loc) · 26.7 KB
/
Copy pathorders.html
File metadata and controls
537 lines (520 loc) · 26.7 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
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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
<!DOCTYPE html>
<html lang="uk-UA, en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SEL Ukraine LearnWebDev</title>
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
<link rel="stylesheet" type="text/css" href="css/formfactor.css">
<script src="https://kit.fontawesome.com/68d2c45a2f.js" crossorigin="anonymous"></script>
<script src="https://static.elfsight.com/platform/platform.js" async></script>
</head>
<body id="body_orders_page">
<header style="position: sticky;">
<h1>
<img src="images/logo.png" alt="legal trademark">
Швайцер Інжиніринг М. Арнаутська
</h1>
<nav>
<div>
<a href="products.html">Доставимо за 10 днів!</a>
<a href="orders.html">Замовити</a>
<a href="youtube.html">SEL відео</a>
<a href="index.html">Якість</a>
<a href="animation.html">MADE in the USA</a>
<a href="#contacts">Америка нам допоможе</a>
</div>
</nav>
</header>
<main class="orders">
<!-- ПЕРША ФОРМА ЗГІДНО З ВИМОГАМИ ДО ФІНАЛЬНОГО ПРОЄКТУ -->
<form id="the_first_form" name="the_first_form" action="/submit" method="POST" enctype="multipart/form-data"
autocomplete="on">
<fieldset class="form-container">
<legend>
<h3>Подати запит на подальшу співпрацю</h3>
</legend>
<div class="form-item">
<p>Зв'яжіться з нами для отримання додаткової інформації про продукцію,
цінових пропозицій та найактуальніших термінів виконання замовлення</p>
</div>
<!-- Однорядкові текстові поля з автозаповненням та підказками -->
<div class="form-item">
<label for="first_name"><strong>Ім'я*</strong></label>
<input type="text" id="first_name" name="first_name" placeholder="Повідомте власне ім'я" size=32 required
autocomplete="given_name">
</div>
<div class="form-item">
<label for="middle_name">По батькові</label>
<input type="text" id="middle_name" name="middle_name" placeholder="Зважаючи на культурну традицію" size=32
autocomplete="additional-name">
</div>
<div class="form-item">
<label for="last_name"><strong>Прізвище*</strong></label>
<input type="text" id="last_name" name="last_name" placeholder="Перепишіть з паспорта" size=32 required
autocomplete="family-name">
</div>
<div class="form-item">
<label for="company"><strong>Компанія*</strong></label>
<input type="text" id="company" name="company" placeholder="Зазначте своє офіційне місце роботи" size=32
required autocomplete="organization">
</div>
<div class="form-item">
<label for="buyer_email"><strong>Email*</strong></label>
<!-- Мабуть, базова валідація на рівні браузера не дозволяє валідацію за моїм шаблоном... -->
<input type="email" id="buyer_email" name="buyer_email" placeholder="Можна ввести кілька адрес через кому"
size=32 required multiple pattern="^[a-zA-Z0-9._+-]+@([a-zA-Z0-9-]+\.)+[a-zA-Z]{2,}$" autocomplete="email">
<!-- регулярний вираз для перевірки формату email з домашнього завдання за курсом Python -->
</div>
<!-- Адаптивний вибір за допомогою радіокнопок -->
<div class="form-item">
<label><strong>Ви звідки?*</strong></label>
<div class="radio_button">
<input type="radio" id="Ukraine" name="nationality" value="ukrainian" checked autocomplete="country">
<label for="Ukraine">Я з України – це навпроти Європи</label>
<input type="radio" id="Moldova" name="nationality" value="moldavian" required autocomplete="country">
<label for="Moldova">Молдова – країна чудова!</label>
</div>
</div>
<!-- Однорядкові текстові поля -->
<div class="form-item">
<label for="city">Місто</label>
<input type="text" id="city" name="city" placeholder="Ваше місто, муніципій, містечко, село" size=32
autocomplete="address-level2">
</div>
<div class="form-item">
<label for="phone_number">Робочий телефон</label>
<input type="tel" id="phone_number" name="phone_number" placeholder="+380 або +373.xx.xxx.xxxx"
pattern="^\+?[0-9]+[0-9\s\-\(\)\.]*$" minlength="7" autocomplete="tel">
</div>
<!-- Список тем для співпраці, що випадає -->
<div class="form-item">
<label for="question_area"><strong>Чим ми можемо Вам допомогти?*</strong></label>
<select class="select_topic" id="topic" name="topic" required>
<option class="option_topic" id="topic_0" disabled selected>Тема звернення</option>
<option class="option_topic" id="topic_1" value="procurement">Закупівля</option>
<option class="option_topic" id="topic_2" value="payment-delivery">Оплата та доставка</option>
<option class="option_topic" id="topic_3" value="tech_support">Технічна консультація</option>
<option class="option_topic" id="topic_4" value="relay_design">Проєктування</option>
<option class="option_topic" id="topic_5" value="warranty">Гарантія</option>
</select>
</div>
<!-- Багаторядкове текстове поле -->
<div class="form-item">
<textarea id="question_area" name="question_area" rows="10" wrap="hard" required autofocus></textarea>
</div>
<!-- Родзинка – завантаження файлів -->
<div class="form-item">
<label for="project">Запропонувати за проєктом</label>
<input type="file" id="project" name="project" accept=".pdf, .xls, .xlsx, .dwg, .dxf, .doc, .docx" multiple>
</div>
<div class="form-item">
<!-- Галочка, кнопки -->
<input type="checkbox" id="privacy_policy" name="privacy_policy" value="ok" required>
<p>Натиснувши на цю клітинку, Ви надаєте згоду на обробку персональних даних</p>
</div>
<div class="form-item">
<button type="submit" id="SubmitButtonForm1Form2" name="SubmitForm1Form2" value="submit"
form="the_first_form the_second_form">НАДІСЛАТИ ВСЕ</button>
<button type="reset" id="ResetButtonForm1" name="resetForm1" value="reset1">Очистити</button>
</div>
</fieldset>
<!-- https://elfsight.com/paypal-button-widget-generator/iframe/ -->
<div class="elfsight-app-270a53e8-f43a-47e7-98a7-b5e8ab6667ff" data-elfsight-app-lazy></div>
</form>
<!-- ДРУГА ФОРМА ЗГІДНО З ВИМОГАМИ ДО ФІНАЛЬНОГО ПРОЄКТУ -->
<!-- Технологія CSS Grid -->
<form id="the_second_form" action="/submit" method="POST" enctype="multipart/form-data" autocomplete="on">
<fieldset>
<legend>
<h3>Кошик закупівлі</h3>
</legend>
<fieldset>
<legend>Автоматика реклоузерів</legend>
<!-- https://selinc.com/products/distribution/protection/recloser-controls/ -->
<div class="form-grid">
<label>
<input type="checkbox" name="recloser_ctrl" value="SEL-351RS" checked> SEL-351RS
<input type="number" name="qty_sel351rs" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="recloser_ctrl" value="SEL-651RA" checked> SEL-651RA
<input type="number" name="qty_sel651ra" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="recloser_ctrl" value="SEL-651R" checked> SEL-651R
<input type="number" name="qty_sel651r" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
</div>
</fieldset>
<fieldset>
<legend>Автоматика регуляторів напруги</legend>
<!-- https://selinc.com/products/distribution/control/power-quality/#voltage-regulator-controls -->
<div class="form-grid">
<label>
<input type="checkbox" name="voltage_regulator_ctrl" value="SEL-2431" checked> SEL-2431
<input type="number" name="qty_sel2431" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
</div>
</fieldset>
<fieldset>
<legend>Автоматика конденсаторних батарей</legend>
<!-- https://selinc.com/products/distribution/control/power-quality/#capacitor-bank-relays -->
<div class="form-grid">
<label>
<input type="checkbox" name="capacitor_bank_ctrl" value="SEL-734B" checked> SEL-734B
<input type="number" name="qty_sel734b" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="capacitor_bank_ctrl" value="SEL-734W" checked> SEL-734W
<input type="number" name="qty_sel734w" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
</div>
</fieldset>
<fieldset>
<legend>Лічильники</legend>
<!-- https://selinc.com/products/metering/revenue-metering/ -->
<div class="form-grid">
<label>
<input type="checkbox" name="meter" value="SEL-735" checked> SEL-735
<input type="number" name="qty_sel735" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
</div>
</fieldset>
<fieldset>
<legend>Комутатори Ethernet</legend>
<!-- https://selinc.com/products/communications/local-area-networks/ethernet-switches/ -->
<div class="form-grid">
<label>
<input type="checkbox" name="ethernet_switch" value="SEL-2730M" checked> SEL-2730M
<input type="number" name="qty_sel2730m" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="ethernet_switch" value="SEL-2730U" checked> SEL-2730U
<input type="number" name="qty_sel2730u" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="ethernet_switch" value="SEL-2740S" checked> SEL-2740S
<input type="number" name="qty_sel2740s" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="ethernet_switch" value="SEL-2741" checked> SEL-2741
<input type="number" name="qty_sel2741" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="ethernet_switch" value="SEL-2742S" checked> SEL-2742S
<input type="number" name="qty_sel2742s" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
</div>
</fieldset>
<!-- https://selinc.com/mktg/the-products-you-need-in-ten-days-or-less/ -->
<fieldset>
<legend>Реле серії SEL-300</legend>
<div class="form-grid">
<label>
<input type="checkbox" name="relay_300" value="SEL-300G" checked> SEL-300G
<input type="number" name="qty_sel300g" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_300" value="SEL-311L" checked> SEL-311L
<input type="number" name="qty_sel311l" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_300" value="SEL-352" checked> SEL-352
<input type="number" name="qty_sel352" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_300" value="SEL-387" checked> SEL-387
<input type="number" name="qty_sel387" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_300" value="SEL-387E" checked> SEL-387E
<input type="number" name="qty_sel387e" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_300" value="SEL-387L" checked> SEL-387L
<input type="number" name="qty_sel387l" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
</div>
</fieldset>
<fieldset>
<legend>Реле серії SEL-400</legend>
<div class="form-grid">
<label>
<input type="checkbox" name="relay_400" value="SEL-400G" checked> SEL-400G
<input type="number" name="qty_sel400g" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_400" value="SEL-401" checked> SEL-401
<input type="number" name="qty_sel401" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_400" value="SEL-411L" checked> SEL-411L
<input type="number" name="qty_sel411l" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_400" value="SEL-421" checked> SEL-421
<input type="number" name="qty_sel421" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_400" value="SEL-451" checked> SEL-451
<input type="number" name="qty_sel451" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_400" value="SEL-487B" checked> SEL-487B
<input type="number" name="qty_sel487b" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_400" value="SEL-487E" checked> SEL-487E
<input type="number" name="qty_sel487e" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_400" value="SEL-487V" checked> SEL-487V
<input type="number" name="qty_sel487v" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_400" value="SEL-T401L" checked> SEL-T401L
<input type="number" name="qty_sel_t401l" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
</div>
</fieldset>
<fieldset>
<legend>Реле серії SEL-500</legend>
<div class="form-grid">
<label>
<input type="checkbox" name="relay_500" value="SEL-501" checked> SEL-501
<input type="number" name="qty_sel501" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_500" value="SEL-551" checked> SEL-551
<input type="number" name="qty_sel551" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_500" value="SEL-551C" checked> SEL-551C
<input type="number" name="qty_sel551c" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_500" value="SEL-587" checked> SEL-587
<input type="number" name="qty_sel587" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_500" value="SEL-587Z" checked> SEL-587Z
<input type="number" name="qty_sel587z" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
</div>
</fieldset>
<fieldset>
<legend>Реле серії SEL-700</legend>
<div class="form-grid">
<label>
<input type="checkbox" name="relay_700" value="SEL-700BT" checked> SEL-700BT
<input type="number" name="qty_sel700bt" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_700" value="SEL-700G" checked> SEL-700G
<input type="number" name="qty_sel700g" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_700" value="SEL-710-5" checked> SEL-710-5
<input type="number" name="qty_sel710_5" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_700" value="SEL-749" checked> SEL-749
<input type="number" name="qty_sel749" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_700" value="SEL-751" checked> SEL-751
<input type="number" name="qty_sel751" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_700" value="SEL-751A" checked> SEL-751A
<input type="number" name="qty_sel751a" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_700" value="SEL-787" checked> SEL-787
<input type="number" name="qty_sel787" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
</div>
</fieldset>
<fieldset>
<legend>Реле серії SEL-800</legend>
<div class="form-grid">
<label>
<input type="checkbox" name="relay_800" value="SEL-849" checked> SEL-849
<input type="number" name="qty_sel849" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="relay_800" value="SEL-851" checked> SEL-851
<input type="number" name="qty_sel851" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
</div>
</fieldset>
<fieldset>
<legend>Контролери автоматизації та моніторингу</legend>
<div class="form-grid">
<label>
<input type="checkbox" name="control_2400" value="SEL-2411" checked> SEL-2411
<input type="number" name="qty_sel2411" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="control_2400" value="SEL-2414" checked> SEL-2414
<input type="number" name="qty_sel2414" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="control_2400" value="SEL-2440" checked> SEL-2440
<input type="number" name="qty_sel2440" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
</div>
</fieldset>
<fieldset>
<legend>Годинники</legend>
<div class="form-grid">
<label>
<input type="checkbox" name="clock" value="SEL-2401" checked> SEL-2401
<input type="number" name="qty_sel2401" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="clock" value="SEL-2407" checked> SEL-2407
<input type="number" name="qty_sel2407" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="clock" value="SEL-2488" checked> SEL-2488
<input type="number" name="qty_sel2488" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
<label>
<input type="checkbox" name="clock" value="SEL-3401" checked> SEL-3401
<input type="number" name="qty_sel3401" min="0" autocomplete="on">
<span class="abbr">шт.</span>
</label>
</div>
</fieldset>
<!-- https://selinc.com/mktg/the-products-you-need-in-ten-days-or-less/ -->
<div class="form-item">
<!-- Кнопки -->
<a href="#the_first_form">
<button type="button" id="ButtonToForm1" name="ButtonToForm1" value="to_form1">Заповнити контакти</button>
</a>
<button type="reset" id="ResetButtonForm2" name="resetForm2" value="reset2">Відновити</button>
</div>
</fieldset>
</form>
</main>
<footer id="contacts">
<section id="footer_for_laptops_and_tablets">
<div id="footer_row1">
<span>Ми робимо електропостачання <strong>безпечнішим, надійнішим та дешевшим!
</strong>© 2017-2025 Schweitzer Engineering Laboratories, Inc.
</span>
<span>Ми робимо електропостачання <strong>безпечнішим, надійнішим та дешевшим!
</strong>© 2017-2025 Schweitzer Engineering Laboratories, Inc.
</span>
</div>
<div id="footer_row2">
<div id="footer_row2_column1">
<p>Наша адреса: УКРАЇНА, м. Одеса</p>
<p>ГРАФІК РОБОТИ CALL-ЦЕНТРУ:</p>
<p>Пн-Пт: з 10:00 до 18:00</p>
<p>Сб: з 10:00 до 14:00</p>
<p>НД: вихідний</p>
</div>
<div id="footer_row2_column2">
<ul>
<li><a href="mailto:energobrama@proton.me">
<i class="fa-regular fa-envelope fa-3x" style="color: #ffffff;"></i>
</a></li>
<li><a href="https://wa.me/+380962674467" target="_blank">
<i class="fa-brands fa-whatsapp fa-3x" style="color: #ffffff;"></i>
</a></li>
<li><a href="https://t.me/radiazioni_ionizzanti_bot" target="_blank">
<i class="fa-brands fa-telegram fa-3x" style="color: #ffffff;"></i>
</a></li>
<li><a href="viber://chat?number=+380937258829">
<i class="fa-brands fa-viber fa-3x" style="color: #ffffff;"></i>
</a></li>
</ul>
</div>
<address id="footer_row2_column3">
<p>Виконав студент гр. СПР411</p>
<p>Комп'ютерної Академії IT STEP</p>
<p>Качуровський Р.Р.</p>
<p><a href="mailto:Kachu_yi23@student.itstep.org">Kachu_yi23@student.itstep.org</a></p>
</address>
</div>
<div id="footer_row3">
<p>This is not a real business. This site was created for educational purposes. No sales or profits
will be made from this site. © 2025, Ruthenus</p>
</div>
</section>
<section id="footer_for_smartphones">
<div id="footer_mobile_row1">
<ul>
<li><a href="tel:+380937258829">
<i class="fa-solid fa-phone fa-beat-fade fa-2x" style="color: #ffffff;"></i>
</a></li>
<li><a href="https://wa.me/+380962674467">
<i class="fa-brands fa-whatsapp fa-beat-fade fa-2x" style="color: #ffffff;"></i>
</a></li>
<li><a href="tg://resolve?domain=radiazioni_ionizzanti_bot">
<i class="fa-brands fa-telegram fa-beat-fade fa-2x" style="color: #ffffff;"></i>
</a></li>
<li><a href="viber://chat?number=+380937258829">
<i class="fa-brands fa-viber fa-beat-fade fa-2x" style="color: #ffffff;"></i>
</a></li>
</ul>
</div>
<div id="footer_mobile_row2">
<p>This is not a real business.</p>
<p>It's just a student project by Ruslan KACZUROWSKI</p>
</div>
</section>
</footer>
</body>
</html>