/
burmistrova_irina
/
web-application
Обзор
Документация
Войти
/
burmistrova_irina
/
web-application
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
help.php
98 строк
3 KB
burmistrova_irina
upload files
21 фев 2025, 13:38
21 фев 2025, 13:38
08eb655
Код
Авторство
О чём код?
<?php session_start(); include 'header.php'; ?> <div class="main-content"> <div class="help-container"> <h1>Помощь</h1> <div class="help-content"> <div class="faq-section"> <h2>Часто задаваемые вопросы</h2> <div class="faq-item"> <h3>Как сделать заказ?</h3> <p>Выберите товары, добавьте их в корзину и следуйте инструкциям по оформлению заказа.</p> </div> <div class="faq-item"> <h3>Какие способы оплаты доступны?</h3> <p>Мы принимаем оплату банковскими картами и электронными платежами.</p> </div> <div class="faq-item"> <h3>Как осуществляется доставка?</h3> <p>Доставка осуществляется курьерской службой или почтой России.</p> </div> <div class="faq-item"> <h3>Как оформить возврат?</h3> <p>Для оформления возврата свяжитесь с нашей службой поддержки в течение 14 дней с момента получения заказа.</p> </div> </div> <div class="support-section"> <h2>Служба поддержки</h2> <p>Если у вас остались вопросы, свяжитесь с нами</p> <ul> <li>Время работы: Пн-Пт с 9:00 до 18:00</li> </ul> </div> </div> </div> </div> <style> .help-container { max-width: 800px; margin: 40px auto; padding: 20px; } .help-content { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); } .help-content h1 { color: #e761ba; margin-bottom: 20px; } .help-content h2 { color: #ff7eb3; margin: 25px 0 15px; } .faq-item { margin-bottom: 20px; padding: 15px; background: #fff0f8; border-radius: 8px; } .faq-item h3 { color: #e761ba; margin-bottom: 10px; } .support-section { margin-top: 30px; padding: 20px; background: #fff0f8; border-radius: 8px; } .support-section ul { list-style-type: none; padding: 0; } .support-section ul li { padding: 8px 0; } </style> <?php include 'footer.php'; ?>