@KorNefeX

Как вставить рекламный блок в лендинг?

Имеется стандартный подписной лендинг
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width,height=device-height,initial-scale=1,minimum-scale=1">
    <link rel="shortcut icon" href="/icons/age.ico" type="image/x-icon">
    <link rel="manifest" href="/manifest.json">
    <script type = "text/javascript" src = "//code.jquery.com/jquery-3.2.1.min.js"></script>
    <title><?=$language['title']?></title>
    <script type="text/javascript" src="/js/push.js"></script>
    <style>
        body {
            -moz-osx-font-smoothing: grayscale;
            -webkit-font-smoothing: antialiased;
            color: #fff;
            font: 16px Arial, sans-serif;
            margin: 0;
            text-align: center;
            user-select: none
        }
        
        .isHide {
            display: none!important
        }
        
        .isShow {
            display: block!important
        }
        
        .bg {
            background-color: #000
        }
        
        .bg,
        .msg {
            height: 100%;
            left: 0;
            position: fixed;
            top: 0;
            width: 100%
        }
        
        .msg__t {
            font-size: 42px;
            margin-top: 10%
        }
        
        .msg__btn {
            background: #fff;
            border: none;
            border-radius: 3px;
            bottom: 10%;
            color: #000;
            font: inherit;
            font-size: 32px;
            height: 62px;
            left: 0;
            margin: auto;
            outline: none;
            padding: 0 28px;
            position: absolute;
            right: 0;
            width: 220px
        }
        
        .msgReady {
            background-color: rgba(0, 0, 0, .75);
            height: 100%;
            left: 0;
            position: fixed;
            top: 0;
            width: 100%
        }
        
        .msgReady__tx {
            font-size: 32px;
            margin-top: 10%
        }
        
        @media (min-width:425px) {
            .msg {
                height: auto;
                top: 50%;
                transform: translateY(-50%)
            }
            .msg__t {
                font-size: 64px;
                margin-top: 0
            }
            .msg__btn {
                margin-top: 10px;
                position: static
            }
            .msgReady__tx {
                font-size: 52px
            }
        }
        @media (min-width: 425px){
            .bg {
                -webkit-background-size: 100% 100%;
                background: linear-gradient(
                rgba(0, 0, 0, 0.8), 
                rgba(0, 0, 0, 0.8)
                ), url(/img/desk2.jpg) no-repeat;
                background-size: 100% 100%;
            }
        }
        .bg {
            -webkit-background-size: 100% 100%;
            background: linear-gradient(
            rgba(0, 0, 0, 0.8), 
            rgba(0, 0, 0, 0.8)
            ), url(/img/desk2.jpg) no-repeat;
            background-size: 100% 100%;
        }
    </style>
    
</head>
<body onload="SendPushMe();">
    <div class="bg"></div>
    <div class="msg" id="container">
        <div class="msg__t msgContent"><?=$language['text']?></div>
    </div>
    <div class="msgReady isHide">
        <div class="msgReady__tx"></div>
    </div>
    
</body> 

</html>

Появилась необходимость вставить в него рекламный блок по типу
<script>блок </script>
так чтобы данный блок отображался внизу страницы!
Прошу вашей экспертной помощи
  • Вопрос задан
  • 61 просмотр
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы