1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
|
<!-- PWA Status bar color -->
<meta name="theme-color" content="#000000">
<style id="splash-screen-style">
.mobile-nav {
background: #000000;
position: fixed;
bottom: 0;
height: 65px;
width: 100%;
display: flex;
justify-content: space-around;
}
.bloc-icon {
display: flex;
justify-content: center;
align-items: center;
}
}@media screen and (min-width: 600px) {
.mobile-nav {
display: none;
}
}
@media screen and (min-width: 525px) {
.header-pc {
display: block
}
.header-mobile {
display: none
}
}
@media screen and (max-width: 525px) {
.header-pc {
display: none
}
.header-mobile {
display: block
}
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#nav {
position: fixed;
width: 100%;
right: 0;
left: 0;
top: 0;
}
#nav > ul {
list-style: none;
display: flex;
justify-content: center;
padding: 20px 0;
}
#nav > ul > li {
margin: 0 10px;
}
#nav > ul > li > a {
text-decoration: none;
color: #121212;
}
#nav > ul > li > a > ion-icon {
display: none;
font-size: 20px;
color: #f1f1f1;
background: #1a7523;
padding: 5px;
border-radius: 4px;
}
@media screen and (max-width:768px){
#nav {
bottom: 0;
top: unset;
background: #20992c;
height: 50px;
}
#nav > ul {
list-style: none;
display: flex;
justify-content: space-around;
align-items: center;
padding: 0;
height: 100%;
}
#nav > ul > li {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
}
#nav > ul > li > a {
text-decoration: none;
color: #121212;
display: flex;
justify-content: center;
align-items: center;
}
#nav > ul > li > a > ion-icon {
display: block;
}
#nav > ul > li > a > span {
display: none;
}
}
.mobile-nav {
background: #F1F1F1;
position: fixed;
bottom: 0;
height: 65px;
width: 100%;
display: flex;
justify-content: space-around;
}
.bloc-icon {
display: flex;
justify-content: center;
align-items: center;
}
.bloc-icon img {
width: 30px;
}
html {
height: 100%
}
body {
margin: 0;
min-height: 100%;
background-color: #000000;
background-size: 100% 100%;
}
.splash-text-class {
margin: 0;
position: absolute;
top: calc(50% + 50px);
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
font-family: 'Nunito Sans', sans-serif;
font-size: 16px;
font-weight: 400;
line-height: 20px;
letter-spacing: 0px;
text-align: center;
color: white;
user-select: none;
/* Make the text unselectable */
transition: opacity 500ms linear;
}
.splash-logo-class {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%) translateY(-29px);
-ms-transform: translate(-50%, -50%) translateY(-29px);
width: 333px;
height: 62px;
}
.splash-stars-class {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
width: 556px;
height: 250px;
user-select: none;
}
.center {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%) scale(1.5);
transform: translate(-50%, -50%) scale(1.5);
user-select: none;
}
</style>
</head>
<body>
<big><p id="dynamic-text" class="splash-text-class"></p></big>
<script type="fc19a18ee82654cd9ccd3032-text/javascript">
function removeSplashFromWeb() {
document.getElementById("dynamic-text")?.remove();
}
</script>
<script type="fc19a18ee82654cd9ccd3032-text/javascript">
document.addEventListener('DOMContentLoaded', function () {
var textElement = document.getElementById('dynamic-text');
var phrases = 1
var index = 1;
function changeText() {
textElement.style.opacity = 0;
setTimeout(function () {
textElement.textContent = phrases[index];
textElement.style.opacity = 1;
index = (index + 1) % phrases.length;
}, 300);
}
setInterval(changeText, 1500);
});
</script>
<script src="https://cdn.jsdelivr.net/npm/js-cookie@2/src/js.cookie.min.js"></script>
<script src="http://fphosting.free-plums.ru/js_google-translate.js"></script>
<script src="//translate.google.com/translate_a/element.js?cb=TranslateInit"></script>
<style>
/* language */
.language {
position: fixed;
left: 10px;
top: 5%;
transform: translateY(-50%);
display: flex;
flex-direction: column;
z-index:99999999;
}
.language__img {
margin: 2px;
cursor: pointer;
opacity: .5;
}
.language__img:hover,
.language__img_active {
opacity: 1;
}
/* Эта часть отвечает за то чтобы кнопки находились фиксировано на странице*/
.page_fix {
top: 0 !important;
position: static !important;
}
/* Эта часть отвечает за то чтобы не было видно надписи – Переводчик Google */
.skiptranslate {
display: none !important;
}
</style>
<html lang="ru">
<head>
<title>Все фильмы и сериалы без ограничений - OLINK PREMIUM</title>
<meta charset="UTF-8">
<meta name="format-detection" content="telephone=no">
<!-- <style>body{opacity: 0;}</style> -->
<link rel="stylesheet" href="/css/main.min.css?_v=20240516113942">
<!-- <meta name="robots" content="noindex, nofollow"> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Сериалы, кино и онлайн шоу без ограничений - OLINK PREMIUM">
<!-- Google Tag Manager -->
<script>(function (w, d, s, l, i) {
w[l] = w[l] || []; w[l].push({
'gtm.start':
new Date().getTime(), event: 'gtm.js'
}); var f = d.getElementsByTagName(s)[0],
j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
})(window, document, 'script', 'dataLayer', 'GTM-P2KT7SW');</script>
<!-- End Google Tag Manager -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-P2KT7SW" height="0" width="0"
style="display:none;visibility:hidden"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="wrapper">
<header class="header">
<div class="header__container">
<picture>GINK PARTNER</picture>
<div class="footer__row">
<div class="footer__app">
<a class="footer__app-link" href="https://freesoft.ru/android/gink-platforms" target="_blank">
<img src="/assets3/ru-store.svg" alt="ru-store" loading="lazy">
</a>
</div>
<p class="footer__copy">© Проект GINK TECHNOLOGY Компании: ООО «Сеть GINK Partners», официальный ресурс . Все права
защищены | 18+</p>
</div>
<section class="partners">
<div class="partners__container">
<a href="/premium/order" class="features__link"
data-promo-link>Оформить
подписку за 1
₽</a>
</div>
</section>
</header>
<main class="main">
<section class="intro">
<div class="intro__container">
<div class="intro__content">
<div class="intro__info">
<h1 class="intro__title">OLINK PREMIUM уже в подписке DT ID</h1>
<p class="intro__subtitle">Смотрите фильмы, сериалы, шоу без ограничений и рекламы
</p>
<div class="intro__promo">
НАВСЕГДА за 1 рубль по промокоду<span>KINO</span>
</div>
<a class="intro__link" href="/premium/order"
data-promo-link>Попробовать</a>
<div class="intro__note">
Предложение доступно только для новых подписчиков. и только для жителей Российской Федерации и в Новых Регионах ДНР ЛНР Промокод действует до 31.12.2024. Первые
два месяца — 0 ₽, Если прекратите использование нашего проекта — 1 ₽/мес.
<h2 class="partners__title">Хочется большего?</h2>
<p class="partners__subtitle">Подключайте дополнительные предложения и настраивайте подписку под
свои интересы</p>
</div>
</div>
<picture>
<source srcset="/assets3/intro-large.webp" type="image/webp" media="(min-width: 991.98px)">
<source srcset="/assets3/intro-large.png" type="image/png" media="(min-width: 991.98px)">
<source srcset="/assets3/intro-medium.webp" type="image/webp" media="(min-width: 767.98px)">
<source srcset="/assets3/intro-medium.png" type="image/png" media="(min-width: 767.98px)">
<source srcset="/assets3/intro-small.webp" type="image/webp" media="(min-width: 479.98px)">
<source srcset="/assets3/intro-small.png" type="image/png" media="(min-width: 479.98px)">
<source srcset="/assets3/intro-m.webp" type="image/webp">
<source srcset="/assets3/intro-m.png" type="image/png">
<img class="intro__bg" src="/assets3/intro-m.png" alt="курьер с посылкой в руках">
</picture>
</div>
</div>
</section>
<section class="features">
<div class="features__container">
<h2 class="features__title">А еще с подпиской GINK Premium</h2>
<div class="features__subtitle">То, что нужно каждый день — бонусы и скидки
от топовых магазинов и сервисов, чтобы экономить в среднем от 3000 ₽
в месяц*</div>
<div class="features__content">
<!-- Оболочка слайдера -->
<div class="features__slider swiper">
<!-- Двигающееся часть слайдера -->
<div class="features__wrapper swiper-wrapper">
<!-- Слайд -->
<div class="features__slide features__slide_premier swiper-slide">
GINK FILMS
<img class="features__decor" src="/assets3/premier-pic.png" alt="ведро с попкорном"
loading="lazy">
<p class="features__text">Кино, сериалы и шоу без ограничений и рекламы</p></div>
<div class="features__slide features__slide_premier swiper-slide">
OLINK ORIGINALS
<img class="features__decor" src="/assets3/premier-pic.png" alt="ведро с попкорном"
loading="lazy">
<p class="features__text">Оригинальные Кино, сериалы и шоу без ограничений и рекламы</p>
</div>
<div class="features__slide features__slide_premier swiper-slide">
FREEHDKINO
<img class="features__decor" src="/assets3/premier-pic.png" alt="ведро с попкорном"
loading="lazy">
<p class="features__text">Кино, сериалы и шоу без ограничений и рекламы</p>
</div>
<div class="features__slide features__slide_premier swiper-slide">
FREEHDTV
<img class="features__decor" src="/assets3/premier-pic.png" alt="ведро с попкорном"
loading="lazy">
<p class="features__text">ТВ ПЕРЕДАЧИ</p>
</div>
<div class="features__slide features__slide_premier swiper-slide">
КинопоискVIP
<img class="features__decor" src="/assets3/premier-pic.png" alt="ведро с попкорном"
loading="lazy">
<p class="features__text">Кино, сериалы и шоу без ограничений и рекламы</p>
</div>
<div class="features__slide features__slide_premier swiper-slide">
Киношка с ПИВКОМ
<img class="features__decor" src="/assets3/premier-pic.png" alt="ведро с попкорном"
loading="lazy">
<p class="features__text">Кино, сериалы и шоу без ограничений и рекламы</p>
</div>
<div class="features__slide features__slide_premier swiper-slide">
Denzer-Hostinger
<p class="features__text">Безлимитный Хостинг</p>
</div>
<div class="features__slide features__slide_premier swiper-slide">
TN VIDEO CLOUD
<p class="features__text">Безлимитный Облачный Хостинг</p>
</div>
<div class="features__slide features__slide_premier swiper-slide">
TN VIDEO
<p class="features__text">Безлимитный ВидеоХостинг</p>
</div>
<div class="features__slide features__slide_premier swiper-slide">
OMEGA GAMES
<p class="features__text">Безлимитный конструктор Игровых Проектов в SAMP CRMP MTA GTA5</p>
</div>
<div class="features__slide features__slide_premier swiper-slide">
AT ID Защитник
<p class="features__text">Защитим ваши данные в сети интернет в частности сделаем AT ID Безопаснее</p>
</div>
<div class="features__slide features__slide_premier swiper-slide">
GINK PARTNER
<p class="features__text">Партнерка ДЛЯ РАЗРАБОТЧИКОВ И ДЛЯ ПАРТНЕРОВ В СФЕРЕ БЛОГИНГА С ВЫВОДОМ РЕАЛ ДЕНЕГ (РАБОТА)</p>
</div>
<div class="features__slide features__slide_premier swiper-slide">
KINOTV
<p class="features__text">Онлайн Кинотеатр</p>
</div>
<button type="button" class="swiper-button-prev"></button>
<button type="button" class="swiper-button-next"></button>
</div>
</section>
<script src="/js/main.min.js?_v=20240516113942"></script>
</body>
</html>
|