МФЖ-201. Продвижение журналистского текста в интернете. Практическое задание №3: Лендинг-продвижение. Мунтян Даниил







 


а вот html'кой 

<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>NO SMOKE: Последний затяж</title>
    <link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@700;800&family=Rajdhani:wght@500;700&display=swap" rel="stylesheet">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Rajdhani', sans-serif;
            line-height: 1.6;
            color: #e0e0e0;
            background: #0a0a0a;
            position: relative;
            overflow-x: hidden;
        }
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(139, 0, 0, 0.15) 0%, transparent 25%),
                radial-gradient(circle at 90% 80%, rgba(255, 0, 60, 0.1) 0%, transparent 30%),
                linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 100%);
            z-index: -1;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
        }
        header {
            text-align: center;
            padding: 70px 20px;
            position: relative;
            margin: 30px 0;
            z-index: 2;
        }
        .neon-border {
            position: absolute;
            top: -15px;
            left: -15px;
            right: -15px;
            bottom: -15px;
            border: 2px solid transparent;
            background: linear-gradient(45deg, #ff003c, #ff00ff, #00f3ff) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none;
            z-index: -1;
            animation: borderGlow 3s infinite alternate;
        }
        @keyframes borderGlow {
            0% { opacity: 0.7; }
            100% { opacity: 1; }
        }
        .headline {
            font-family: 'Orbitron', sans-serif;
            font-size: 4.2rem;
            font-weight: 800;
            background: linear-gradient(to right, #ff003c, #ff00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 15px rgba(255, 0, 60, 0.7);
            letter-spacing: -1px;
            margin: 20px 0;
            position: relative;
            animation: textGlow 2s ease-in-out infinite alternate;
        }
        @keyframes textGlow {
            from { text-shadow: 0 0 10px rgba(255, 0, 60, 0.7); }
            to { text-shadow: 0 0 25px rgba(255, 0, 255, 0.9), 0 0 35px rgba(255, 0, 60, 0.8); }
        }
        .subheadline {
            font-size: 1.8rem;
            color: #ff8c8c;
            margin: 25px 0;
            font-weight: 500;
            text-shadow: 0 0 8px rgba(255, 0, 60, 0.5);
        }
        .cta-button {
            display: inline-block;
            background: transparent;
            color: #fff;
            padding: 18px 50px;
            border: 2px solid #ff003c;
            border-radius: 8px;
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1.3rem;
            margin: 20px 0;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 0 15px rgba(255, 0, 60, 0.6);
            letter-spacing: 1px;
        }
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 0, 60, 0.4), transparent);
            transition: 0.5s;
        }
        .cta-button:hover::before {
            left: 100%;
        }
        .cta-button:hover {
            box-shadow: 0 0 25px rgba(255, 0, 60, 0.9), 0 0 35px rgba(255, 0, 255, 0.7);
            transform: scale(1.05);
        }
        .hero-image {
            width: 100%;
            max-height: 600px;
            object-fit: cover;
            margin: 40px 0;
            position: relative;
            border-radius: 8px;
            box-shadow: 0 0 30px rgba(255, 0, 60, 0.4);
            transition: transform 0.5s ease;
        }
        .hero-image:hover {
            transform: scale(1.02);
        }
        .hero-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,0,60,0.1), transparent);
            pointer-events: none;
            border-radius: 8px;
        }
        .trust-section {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
            margin: 60px 0;
            padding: 40px;
            position: relative;
            z-index: 2;
        }
        .trust-item {
            text-align: center;
            max-width: 280px;
            padding: 25px;
            transition: transform 0.3s ease;
        }
        .trust-item:hover {
            transform: translateY(-10px);
        }
        .trust-icon {
            font-size: 4rem;
            background: linear-gradient(to right, #ff003c, #ff00ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            text-shadow: 0 0 15px rgba(255, 0, 60, 0.7);
            display: block;
        }
        .trust-text {
            font-size: 1.3rem;
            color: #ffcccc;
            font-weight: 600;
            text-shadow: 0 0 10px rgba(255, 0, 60, 0.3);
        }
        .lead-paragraph {
            font-size: 1.5rem;
            max-width: 900px;
            margin: 50px auto;
            line-height: 1.8;
            text-align: center;
            padding: 35px;
            border: 1px solid rgba(255, 0, 60, 0.4);
            border-radius: 12px;
            background: rgba(20, 20, 20, 0.7);
            box-shadow: inset 0 0 15px rgba(255, 0, 60, 0.3),
                        0 0 25px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }
        .lead-paragraph::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #ff003c, #ff00ff);
        }
        footer {
            text-align: center;
            padding: 40px;
            color: #8a0000;
            font-size: 1.1rem;
            border-top: 1px solid rgba(255, 0, 60, 0.3);
            margin-top: 30px;
            position: relative;
        }
        footer::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #ff003c, transparent);
        }
        @media (max-width: 768px) {
            .headline {
                font-size: 2.8rem;
            }
            .subheadline {
                font-size: 1.4rem;
            }
            .cta-button {
                padding: 15px 30px;
                font-size: 1.1rem;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <header>
            <div class="neon-border"></div>
            <h1 class="headline">NO SMOKE</h1>
            <div class="subheadline">Твоя последняя сигарета уже горит</div>
            <a href="#action" class="cta-button">ОСТАНОВИТЬ СЕБЯ</a>
        </header>

        <img src="https://images.unsplash.com/photo-1584571734132-3d53f1c08460?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80" 
             alt="Тлеющая сигарета с цифровым таймером вместо дыма" 
             class="hero-image">

        <p class="lead-paragraph">
            Шокирующее расследование: как табачные гиганты программируют твою зависимость через нейротехнологии. 
            Получи персональный алгоритм освобождения с поддержкой нейропсихологов и технологией отслеживания прогресса в реальном времени. Твой мозг вернется к состоянию «до первой сигареты» за 21 день.
        </p>

        <section class="trust-section">
            <div class="trust-item">
                <span class="trust-icon">🧠</span>
                <p class="trust-text">Нейрохакинг от MIT NeuroLab</p>
            </div>
            <div class="trust-item">
                <span class="trust-icon">🔥</span>
                <p class="trust-text">12 347 человек бросили за 24 часа</p>
            </div>
            <div class="trust-item">
                <span class="trust-icon">🛡️</span>
                <p class="trust-text">Гарантия возврата 300%</p>
            </div>
        </section>

        <div style="text-align: center; margin: 60px 0; position: relative; z-index: 2;">
            <a href="#action" class="cta-button">ЗАПУСТИТЬ АЛГОРИТМ</a>
        </div>

        <footer>
            <p>⚠️ Контент одобрен киберпсихиатрами и хакерами из Anonymous Health Division</p>
        </footer>
    </div>
</body>
</html>

Комментарии

Популярные сообщения из этого блога

МФЖ-201. Продвижение журналистского текста в интернете. Практическое задание №1: SEO-оптимизация журналистского текста. Даниил Мунтян

МФЖ-201. Продвижение журналистского текста в интернете. Практическое задание №2: Продвижение вирального контента. Мунтян Даниил