EXPERT ФОУРУМ

Информация о пользователе

Привет, Гость! Войдите или зарегистрируйтесь.


Вы здесь » EXPERT ФОУРУМ » ИНФОРМАЦИЯ САЙТА » О НАШЕМ САЙТЕ


О НАШЕМ САЙТЕ

Сообщений 1 страница 16 из 16

1

Добро пожаловать на Expert Game — платформу профессиональных обзоров видеоигр. Наша команда проводит сотни часов в играх, чтобы предоставить вам взвешенную и структурированную оценку.

Что мы анализируем в каждом обзоре:

Геймплей: динамика, механика, реиграбельность.

Сюжет и нарратив: глубина, оригинальность, эмоциональная вовлечённость.

Графика и звук: визуальная стилистика, качество текстур, саундтрек, озвучка.

Оптимизация: производительность на разных ПК, баги, патчи.

Ценность: соотношение стоимости и количества контента, микротранзакции.

Мультиплеер: баланс, сообщество, античит.

Мы не просто говорим «нравится/не нравится» — мы объясняем, почему.

Вариант 4. Дружелюбный и неформальный

Привет, геймер! Застрял в выборе: купить новую игру или подождать скидки? Сомневаешься в громком релизе? Добро пожаловать на Expert Game!

Мы играем во всё — от масштабных RPG до уютных инди‑игр — и делимся с тобой честными впечатлениями без спойлеров. В наших обзорах ты найдёшь:

главные плюсы и минусы игры;

для кого она точно подойдёт (и для кого — нет);

сколько часов займёт прохождение;

есть ли смысл ждать патчей или дополнений.

+1

Перевести2

.

0

Перевести3

..

0

Перевести4

.

0

Перевести5

.

0

Перевести6

.

0

Перевести7

..

0

Перевести8

.

.

Отредактировано OneTop (2026-06-15 12:12:49)

0

Перевести9

.

0

Перевести10

https://upforme.ru/uploads/001c/b7/c8/2/t685095.png

0

Перевести11

https://upforme.ru/uploads/001c/b7/c8/2/t537934.png

0

Перевести12

https://bulldrop.biz/confirm-email/?mai … 2c2c3c412b

0

13

<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Красочная анимированная шапка</title>
    <style>
        /* Обнуление базовых отступов */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #0b0c10;
        }

        /* --- ШАПКА САЙТА С АНИМИРОВАННЫМ ГРАДИЕНТОМ --- */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 10%;
            height: 90px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
           
            /* Яркий 4-х цветный градиент */
            background: linear-gradient(-45deg, #ff007f, #7928ca, #00dfd8, #ff007f);
            background-size: 400% 400%;
            /* Запуск бесконечной анимации перелива фона */
            animation: gradientBg 12s ease infinite;
        }

        /* Анимация движения фона */
        @keyframes gradientBg {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* --- ЛОГОТИП С НЕОНОВОЙ АНИМАЦИЕЙ --- */
        .logo {
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            /* Неоновое свечение текста */
            text-shadow: 0 0 10px #fff, 0 0 20px #00dfd8, 0 0 40px #00dfd8;
            animation: neonPulse 2s ease-in-out infinite alternate;
        }

        @keyframes neonPulse {
            from { text-shadow: 0 0 10px #fff, 0 0 20px #00dfd8, 0 0 30px #00dfd8; }
            to { text-shadow: 0 0 15px #fff, 0 0 30px #ff007f, 0 0 50px #ff007f; }
        }

        /* --- НАВИГАЦИОННОЕ МЕНЮ --- */
        .nav-links {
            list-style: none;
            display: flex;
            gap: 30px;
        }

        .nav-links li a {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            position: relative;
            padding: 5px 0;
            transition: all 0.3s ease;
        }

        /* Эффект при наведении на ссылку (увеличение яркости) */
        .nav-links li a:hover {
            color: #fff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        }

        /* Умное подчеркивание, выезжающее из центра */
        .nav-links li a::after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: #fff;
            transform-origin: bottom cubic-bezier(0.85, 0, 0.15, 1);
            transition: transform 0.4s ease-out;
            box-shadow: 0 0 10px #fff;
        }

        .nav-links li a:hover::after {
            transform: scaleX(1);
        }

        /* --- АНИМИРОВАННАЯ КНОПКА --- */
        .cta-btn {
            padding: 12px 25px;
            background-color: rgba(255, 255, 255, 0.15);
            border: 2px solid #fff;
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            border-radius: 50px;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px); /* Легкий эффект размытия за кнопкой */
        }

        .cta-btn:hover {
            background-color: #fff;
            color: #7928ca;
            box-shadow: 0 0 25px #fff;
            transform: translateY(-3px); /* Легкое подпрыгивание вверх */
        }

        .cta-btn:active {
            transform: translateY(-1px);
        }
    </style>
</head>
<body>

    <header class="header">
        <!-- Логотип -->
        <a href="#" class="logo">NeonSpace</a>
       
        <!-- Меню навигации -->
        <nav>
            <ul class="nav-links">
                <li><a href="#">Главная</a></li>
                <li><a href="#">Галерея</a></li>
                <li><a href="#">Услуги</a></li>
                <li><a href="#">Контакты</a></li>
            </ul>
        </nav>
       
        <!-- Кнопка действия -->
        <a href="#" class="cta-btn">Войти</a>
    </header>

</body>
</html>

0

14

<!-- Вставьте в HTML под шапкой -->
<canvas id="particleCanvas" style="width: 100%; height: 400px; background: #0f172a;"></canvas>

<script>
const canvas = document.getElementById('particleCanvas');
const ctx = canvas.getContext('2d');
let particles = [];

function resize() {
    canvas.width = canvas.offsetWidth;
    canvas.height = canvas.offsetHeight;
}
window.addEventListener('resize', resize);
resize();

class Particle {
    constructor() {
        this.x = Math.random() * canvas.width;
        this.y = Math.random() * canvas.height;
        this.size = Math.random() * 3 + 1;
        this.speedX = Math.random() * 1 - 0.5;
        this.speedY = Math.random() * 1 - 0.5;
        this.color = `hsl(${Math.random() * 360}, 70%, 60%)`;
    }
    update(mouseX, mouseY) {
        this.x += this.speedX;
        this.y += this.speedY;
        if (this.x > canvas.width || this.x < 0) this.speedX *= -1;
        if (this.y > canvas.height || this.y < 0) this.speedY *= -1;
       
        // Магия притяжения к мыши
        let dx = mouseX - this.x;
        let dy = mouseY - this.y;
        let distance = Math.sqrt(dx * dx + dy * dy);
        if (distance < 150) {
            this.x += dx * 0.02;
            this.y += dy * 0.02;
        }
    }
    draw() {
        ctx.fillStyle = this.color;
        ctx.beginPath();
        ctx.arc(this.x, this.y, this.size, 0, Math.PI * 2);
        ctx.fill();
    }
}

for (let i = 0; i < 100; i++) particles.push(new Particle());

let mouse = { x: -1000, y: -1000 };
canvas.addEventListener('mousemove', (e) => {
    const rect = canvas.getBoundingClientRect();
    mouse.x = e.clientX - rect.left;
    mouse.y = e.clientY - rect.top;
});

function animate() {
    ctx.fillStyle = 'rgba(15, 23, 42, 0.2)'; // Эффект шлейфа
    ctx.fillRect(0, 0, canvas.width, canvas.height);
    particles.forEach(p => {
        p.update(mouse.x, mouse.y);
        p.draw();
    });
    requestAnimationFrame(animate);
}
animate();
</script>

0

15

<footer class="creative-footer">
    <!-- Анимированные волны на стыке с контентом сайта -->
    <div class="footer-waves">
        <svg class="wave-svg" xmlns="http://w3.org" viewBox="0 24 150 28" preserveAspectRatio="none" shape-rendering="auto">
            <defs>
                <path id="gentle-wave" d="M-160 44c30 0 58-18 88-18s58 18 88 18 58-18 88-18 58 18 88 18 v44h-352z" />
            </defs>
            <g class="parallax-waves">
                <use href="#gentle-wave" x="48" y="0" fill="rgba(255, 0, 127, 0.15)" />
                <use href="#gentle-wave" x="48" y="3" fill="rgba(0, 242, 254, 0.2)" />
                <use href="#gentle-wave" x="48" y="5" fill="rgba(127, 0, 255, 0.25)" />
                <use href="#gentle-wave" x="48" y="7" fill="url(#footer-gradient)" />
            </g>
            <!-- Градиент для самой нижней (главной) волны -->
            <defs>
                <linearGradient id="footer-gradient" x1="0%" y1="0%" x2="100%" y2="0%">
                    <stop offset="0%" stop-color="#7f00ff" />
                    <stop offset="50%" stop-color="#ff007f" />
                    <stop offset="100%" stop-color="#00f2fe" />
                </linearGradient>
            </defs>
        </svg>
    </div>

    <!-- Основное содержимое подвала -->
    <div class="footer-content">
        <div class="footer-grid">
            <!-- Блок 1: О нас / Бренд -->
            <div class="footer-column brand-info">
                <h2 class="footer-logo">НЛМТ<span>.</span></h2>
                <p>Мы создаем цифровые решения нового поколения. Ярко. Динамично. Профессионально.</p>
            </div>

            <!-- Блок 2: Навигация -->
            <div class="footer-column">
                <h3>Навигация</h3>
                <ul>
                    <li><a href="#" class="footer-link">Главная</a></li>
                    <li><a href="#" class="footer-link">Наши проекты</a></li>
                    <li><a href="#" class="footer-link">Услуги и цены</a></li>
                    <li><a href="#" class="footer-link">Блог компании</a></li>
                </ul>
            </div>

            <!-- Блок 3: Контакты -->
            <div class="footer-column">
                <h3>Контакты</h3>
                <ul>
                    <li><a href="mailto:info@nlmt.ru" class="footer-link">info@nlmt.ru</a></li>
                    <li><a href="tel:+79991112233" class="footer-link">+7 (999) 111-22-33</a></li>
                    <li><span>г. Москва, ул. Цифровая, д. 42</span></li>
                </ul>
            </div>

            <!-- Блок 4: Соцсети с интерактивным свечением -->
            <div class="footer-column">
                <h3>Мы в сети</h3>
                <div class="social-icons">
                    <a href="#" class="social-icon tg" data-color="#00f2fe">TG</a>
                    <a href="#" class="social-icon vk" data-color="#7f00ff">VK</a>
                    <a href="#" class="social-icon yt" data-color="#ff007f">YT</a>
                </div>
            </div>
        </div>

        <!-- Нижняя плашка (Копирайт) -->
        <div class="footer-bottom">
            <p>&copy; 2026 НЛМТ. Все права защищены. Создано с настроением.</p>
        </div>
    </div>
</footer>

<style>
/* Главный контейнер подвала */
.creative-footer {
    position: relative;
    width: 100%;
    background: #090014; /* Глубокий темный цвет, переходящий из волны */
    overflow: hidden;
    font-family: 'Segoe UI', Roboto, sans-serif;
    margin-top: auto; /* Помогает прижать футер к низу страницы */
}

/* Секция с анимированными волнами */
.footer-waves {
    position: relative;
    width: 100%;
    height: 120px;
    margin-bottom: -7px; /* Убирает микро-зазор в верстке */
    min-height: 100px;
    max-height: 150px;
}

.wave-svg {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Анимация движения волн по горизонтали с разной скоростью */
.parallax-waves > use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}
.parallax-waves > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax-waves > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax-waves > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax-waves > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes move-forever {
    0% { transform: translate3d(-90px, 0, 0); }
    100% { transform: translate3d(85px, 0, 0); }
}

/* Стилизация контентной части подвала */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 20px 20px;
    color: #cbd5e1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    font-weight: 600;
}

/* Красивая неоновая точка у логотипа */
.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.footer-logo span {
    color: #ff007f;
    text-shadow: 0 0 10px #ff007f;
}

.brand-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

/* Интерактивные ссылки с эффектом плавного смещения и изменения цвета */
.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #00f2fe;
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(0, 242, 254, 0.6);
}

/* Круглые иконки соцсетей с интерактивным неоновым свечением */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1e1b4b;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Эффект при наведении на соцсети: цвет меняется динамически */
.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    background: #fff;
    color: #090014;
}
.social-icon.tg:hover { box-shadow: 0 0 20px #00f2fe; border-color: #00f2fe; }
.social-icon.vk:hover { box-shadow: 0 0 20px #7f00ff; border-color: #7f00ff; }
.social-icon.yt:hover { box-shadow: 0 0 20px #ff007f; border-color: #ff007f; }

/* Нижняя линия разделения */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
}

/* Адаптивность под мобильные телефоны */
@media (max-width: 768px) {
    .footer-waves { height: 60px; min-height: 60px; }
    .footer-grid { gap: 25px; }
    .footer-column { text-align: center; }
    .social-icons { justify-content: center; }
    .footer-link:hover { transform: translateY(-2px); }
}
</style>

0

16

<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Cool Animated Footer</title>
    <!-- Подключаем иконки FontAwesome для красоты -->
    <link rel="stylesheet" href="https://cloudflare.com">
   
    <style>
        /* Обнуление и базовые стили для демонстрации */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: #0b0c10;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        /* --- СУПЕР КЛАССНЫЙ ФУТЕР --- */
        .magic-footer {
            position: relative;
            background: #12131c;
            width: 100%;
            padding: 60px 40px 30px;
            overflow: hidden;
            border-top: 4px solid transparent;
            /* Анимированная градиентная рамка наверху */
            border-image: linear-gradient(90deg, #ff007f, #7f00ff, #00f0ff, #ff007f) 1;
            animation: borderGlow 6s linear infinite;
        }

        /* Живой движущийся фон (волны/градиент) */
        .magic-footer::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(127,0,255,0.15) 0%, rgba(0,0,0,0) 60%),
                        radial-gradient(circle, rgba(0,240,255,0.1) 0%, rgba(0,0,0,0) 70%);
            animation: rotateBg 20s linear infinite;
            z-index: 1;
        }

        /* Контейнер для контента */
        .footer-container {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        /* Блоки футера */
        .footer-box {
            color: #fff;
        }

        .footer-box h3 {
            font-size: 24px;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #00f0ff, #ff007f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-box p {
            color: #a0a5c0;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Интерактивные ссылки-кнопки */
        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #a0a5c0;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }

        /* Эффект подчеркивания и выезда при наведении */
        .footer-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background: linear-gradient(90deg, #00f0ff, #ff007f);
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: #fff;
            transform: translateX(8px);
            text-shadow: 0 0 10px rgba(0,240,255,0.5);
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        /* Разноцветные Кнопки Соцсетей */
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #1a1c29;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            border: 1px solid rgba(255,255,255,0.1);
        }

        /* Персонализированные цвета при наведении */
        .social-btn.youtube:hover { background: #ff0000; box-shadow: 0 0 20px #ff0000; transform: translateY(-5px) scale(1.1); }
        .social-btn.telegram:hover { background: #0088cc; box-shadow: 0 0 20px #0088cc; transform: translateY(-5px) scale(1.1); }
        .social-btn.tiktok:hover { background: #ff007f; box-shadow: 0 0 20px #ff007f; transform: translateY(-5px) scale(1.1); }
        .social-btn.github:hover { background: #333; box-shadow: 0 0 20px #fff; transform: translateY(-5px) scale(1.1); }

        /* Форма подписки с кнопкой-взрывом */
        .subscribe-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .subscribe-form input {
            padding: 14px;
            border-radius: 8px;
            border: 2px solid #25283d;
            background: #1a1c29;
            color: #fff;
            outline: none;
            transition: 0.3s;
        }

        .subscribe-form input:focus {
            border-color: #00f0ff;
            box-shadow: 0 0 10px rgba(0,240,255,0.3);
        }

        .animated-button {
            padding: 14px;
            border: none;
            border-radius: 8px;
            background: linear-gradient(45deg, #7f00ff, #ff007f);
            color: white;
            font-weight: bold;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .animated-button:hover {
            transform: scale(1.03);
            box-shadow: 0 0 20px rgba(255, 0, 127, 0.6);
        }

        /* Эффект блика на кнопке */
        .animated-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: 0.5s;
        }

        .animated-button:hover::before {
            left: 150%;
        }

        /* Нижняя полоса с копирайтом */
        .footer-bottom {
            position: relative;
            z-index: 2;
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            color: #6c7293;
            font-size: 14px;
        }

        .footer-bottom span {
            color: #00f0ff;
            font-weight: bold;
            cursor: pointer;
        }

        /* --- КЛАССНЫЕ АНИМАЦИИ ДЛЯ КРУГОВ (JS) --- */
        .interactive-bubble {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(0,240,255,0.2), rgba(255,0,127,0.2));
            pointer-events: auto; /* Чтобы можно было трогать мыжкой */
            cursor: pointer;
            transition: transform 0.5s cubic-bezier(0.1, 0.8, 0.3, 1), opacity 0.5s;
            z-index: 1;
        }

        /* Ключевые кадры для анимаций */
        @keyframes borderGlow {
            0% { background-position: 0% 50%; }
            100% { background-position: 400% 50%; }
        }

        @keyframes rotateBg {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
    </style>
</head>
<body>

    <!-- НАЧАЛО ФУТЕРА -->
    <footer class="magic-footer" id="interactiveFooter">
       
        <!-- Контент -->
        <div class="footer-container">
           
            <!-- Блок 1: О проекте -->
            <div class="footer-box">
                <h3>CyberSpace</h3>
                <p>Мы создаем потрясающие цифровые решения будущего. Кликай, исследуй, играй с элементами — этот подвал полностью интерактивен!</p>
                <div class="social-icons">
                    <a href="#" class="social-btn telegram"><i class="fab fa-telegram"></i></a>
                    <a href="#" class="social-btn youtube"><i class="fab fa-youtube"></i></a>
                    <a href="#" class="social-btn tiktok"><i class="fab fa-tiktok"></i></a>
                    <a href="#" class="social-btn github"><i class="fab fa-github"></i></a>
                </div>
            </div>

            <!-- Блок 2: Навигация -->
            <div class="footer-box">
                <h3>Навигация</h3>
                <ul class="footer-links">
                    <li><a href="#"><i class="fas fa-bolt" style="color: #00f0ff; margin-right: 8px;"></i>Главная страница</a></li>
                    <li><a href="#"><i class="fas fa-rocket" style="color: #ff007f; margin-right: 8px;"></i>Наши крутые фичи</a></li>
                    <li><a href="#"><i class="fas fa-gem" style="color: #7f00ff; margin-right: 8px;"></i>Премиум доступ</a></li>
                    <li><a href="#"><i class="fas fa-code" style="color: #00ff88; margin-right: 8px;"></i>Секретная зона</a></li>
                </ul>
            </div>

            <!-- Блок 3: Интерактивная форма -->
            <div class="footer-box">
                <h3>Рассылка будущего</h3>
                <p>Оставь почту и получи доступ к закрытому контенту.</p>
                <form class="subscribe-form" onsubmit="event.preventDefault(); alert('🚀 Ура! Вы успешно подписались на Кибер-рассылку!');">
                    <input type="email" placeholder="Твой секретный Email" required>
                    <button class="animated-button" type="submit">Вступить в банду</button>
                </form>
            </div>

        </div>

        <!-- Нижняя плашка -->

0

Быстрый ответ

Напишите ваше сообщение и нажмите «Отправить»



Вы здесь » EXPERT ФОУРУМ » ИНФОРМАЦИЯ САЙТА » О НАШЕМ САЙТЕ