Загрузка данных


<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Fly Emirates Курсовая</title>
    <style>
        /* 1. ПОДКЛЮЧАЕМ ШРИФТ */
        @font-face {
            font-family: "KONSTRUKT";
            src: url("assets/font/KONSTRUKT.otf");
        }

        /* 2. ПРИМЕНЯЕМ ЕГО ТОЛЬКО К СЛАЙДЕРУ */
        .custom-font {
            font-family: "KONSTRUKT", sans-serif;
        }
    </style>
</head>

<body style="margin: 0; font-family: sans-serif;">

    <div style="display: flex; width: 100%;">
        <div style="background: #4158D0; flex: 1; height: 60px;"></div>
        <div style="background: #C850C0; flex: 1; height: 60px;"></div>
        <div style="background: #FFCC70; flex: 1; height: 60px;"></div>
    </div>
  
    <div class="custom-font" style="background: #f0f0f0; width: 100%; height: 50px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid #000; font-size: 24px;">
        Слайдер
    </div>

    <div style="padding: 20px;">
             
        <p style="text-align: left;"><b>Услуги (Товары)</b></p>
        
        <div style="display: flex; justify-content: space-between; gap: 20px; margin-bottom: 20px;">
            
            <div style="border: 2px solid #000; flex: 1; padding: 15px; display: flex; flex-direction: column; align-items: center;">
                <div style="width: 100%; height: 120px; border: 1px dashed #ccc; margin-bottom: 10px; display: flex; align-items: center; justify-content: center;">
                    <img src="assets/img/1.webp" style="max-width: 100%; max-height: 100%;">
                </div>
                <div style="text-align: center; width: 100%; border-bottom: 1px solid #eee; margin-bottom: 10px;"><b>Наименование</b></div>
                <div style="text-align: left; width: 100%; font-size: 14px; flex-grow: 1;">Описание товара</div>
                <div style="width: 100%; display: flex; justify-content: space-between; align-items: center; margin-top: 15px;">
                    <span>10₽</span>
                    <button style="border: 1px solid #000; background: #fff; cursor: pointer;">Корзина</button>
                </div>
            </div>

            <div style="border: 2px solid #000; flex: 1; padding: 15px; display: flex; flex-direction: column; align-items: center;">
                <div style="width: 100%; height: 120px; border: 1px dashed #ccc; margin-bottom: 10px; display: flex; align-items: center; justify-content: center;">
                    <img src="assets/img/2.webp" style="max-width: 100%; max-height: 100%;">
                </div>
                <div style="text-align: center; width: 100%; border-bottom: 1px solid #eee; margin-bottom: 10px;"><b>Наименование</b></div>
                <div style="text-align: left; width: 100%; font-size: 14px; flex-grow: 1;">Описание товара</div>
                <div style="width: 100%; display: flex; justify-content: space-between; align-items: center; margin-top: 15px;">
                    <span>10₽</span>
                    <button style="border: 1px solid #000; background: #fff; cursor: pointer;">Корзина</button>
                </div>
            </div>

            <div style="border: 2px solid #000; flex: 1; padding: 15px; display: flex; flex-direction: column; align-items: center;">
                <div style="width: 100%; height: 120px; border: 1px dashed #ccc; margin-bottom: 10px; display: flex; align-items: center; justify-content: center;">
                    <img src="assets/img/3.webp" style="max-width: 100%; max-height: 100%;">
                </div>
                <div style="text-align: center; width: 100%; border-bottom: 1px solid #eee; margin-bottom: 10px;"><b>Наименование</b></div>
                <div style="text-align: left; width: 100%; font-size: 14px; flex-grow: 1;">Описание товара</div>
                <div style="width: 100%; display: flex; justify-content: space-between; align-items: center; margin-top: 15px;">
                    <span>10₽</span>
                    <button style="border: 1px solid #000; background: #fff; cursor: pointer;">Корзина</button>
                </div>
            </div>

        </div>

        <p style="text-align: left; margin-top: 30px;"><b>ПАРТНЕРЫ</b></p>
        <div style="display: flex; justify-content: space-between; gap: 15px; margin-bottom: 30px;">
            <img src="assets/img/1.webp" style="border: 1px solid #000; width: 18%; height: 80px; object-fit: cover;">
            <img src="assets/img/2.webp" style="border: 1px solid #000; width: 18%; height: 80px; object-fit: cover;">
            <img src="assets/img/3.webp" style="border: 1px solid #000; width: 18%; height: 80px; object-fit: cover;">
            <img src="assets/img/4.webp" style="border: 1px solid #000; width: 18%; height: 80px; object-fit: cover;">
            <img src="assets/img/5.webp" style="border: 1px solid #000; width: 18%; height: 80px; object-fit: cover;">
        </div>
        
        <div style="text-align: center; padding: 20px; background: #eee;">
            <p>Наш аудиогид:</p>
            <audio controls>
                <source src="assets/audio/music.mp3" type="audio/mpeg">
            </audio>
        </div>
        
    </div>
</body>
</html>