-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-example-2.html
135 lines (109 loc) · 4.35 KB
/
index-example-2.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Celadon CS - Coming Soon page by Get-Web.site</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="shortcut icon" href="./images/favicon.png">
<meta name="author" content="Vitalii P. | get-web.site" />
<meta name="Description" content="Description">
<meta name="Keywords" content="Keywords">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="./images/favicons/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/favicons/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="152x152" href="./images/favicons/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="120x120" href="./images/favicons/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="76x76" href="./images/favicons/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" href="./images/favicons/apple-touch-icon.png">
<link rel="icon" href="./images/favicons/apple-touch-icon.png" type="image/x-icon">
<meta property="og:type" content="website">
<meta property="og:url" content="https://example.com">
<meta property="og:title" content="Content Title">
<meta property="og:image" content="https://example.com/scl-img.jpg">
<meta property="og:description" content="Description Here">
<meta property="og:site_name" content="Site Name">
<meta property="og:locale" content="en_US">
<!-- Next tags are optional but recommended -->
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<script>
const __config = {
gFonts: {
/* GOOGLE FONTS */
fonts: [
'Roboto:300,400,500,700,900:latin,cyrillic',
],
delay: 500,
},
eDate: {
init: true,
/* YODHMS format: years, months, days, hours, minutes, seconds */
format: 'DHMS',
expiryDate: "2024/08/14 00:00:00",
timeZone: +3,
endTimeMSG: "Time's up"
},
};
</script>
<!-- fonts -->
<link rel="stylesheet" href="./libs/fontello/css/gwi.css?ver=0.0.3">
<!-- Main style -->
<link rel="stylesheet" href="./css/style.css?ver=0.0.1">
<style>
body {
color: #353535;
background-color: #353535;
background-image: url('./images/examples/example-2.jpg');
text-shadow: 0 1px 2px rgba(255, 255, 255, 0.53);
}
.overlay {
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0), rgb(23, 36, 40));
}
.gw-timer__desc {
color: #949494;
}
.countdown__counter {
color: #727171;
}
</style>
</head>
<body class="body">
<div class="overlay"></div>
<div class="section countdown">
<div class="countdown__inner">
<div class="countdown__overlay"></div>
<h2 class="countdown__title title title_large title_uppercase title_mb_small">
Soon...
</h2>
<div class="countdown__counter counter" data-counter-js></div>
<div class="countdown__scl scl">
<a href="#" class="scl__item">
<span class="scl__gwi gwi gwi_vkontakte"></span>
</a>
<a href="#" class="scl__item">
<span class="scl__gwi gwi gwi_facebook"></span>
</a>
<a href="#" class="scl__item">
<span class="scl__gwi gwi gwi_instagram"></span>
</a>
<a href="#" class="scl__item">
<span class="scl__gwi gwi gwi_twitter"></span>
</a>
<a href="#" class="scl__item">
<span class="scl__gwi gwi gwi_paper-plane"></span>
</a>
</div>
</div>
</div> <!-- END row -->
<!-- Get-Web Libs -->
<script src="./libs/jquery/jquery-3.5.1.min.js"></script>
<!-- countdown -->
<script src="./libs/countdown/js/jquery.plugin.min.js"></script>
<script src="./libs/countdown/js/jquery.countdown.min.js"></script>
<!-- Main app -->
<script src="./js/app.js?ver=0.0.1"></script>
</body>
</html>
<!--
Copyright © Get-Web.Site
Front-End Developer: Get-Web.Site
-->