-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex-example-3.html
More file actions
137 lines (108 loc) · 4.08 KB
/
index-example-3.html
File metadata and controls
137 lines (108 loc) · 4.08 KB
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
<!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: #ffce5a;
background: #0A0B27;
background: linear-gradient(to top left, #0A0B27, #C011CD);
}
.overlay {
display: none;
}
.gw-timer__desc {
color: #fff;
}
.countdown__counter {
color: #4b134d;
}
.btn {
color: #4b134d;
}
.btn::after {
background-color: rgba(255, 255, 255, 0.23);
}
.btn:hover:after {
background-color: rgba(255, 255, 255, 0.3);
}
</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_small title_uppercase">
Coming Soon
</h2>
<div class="countdown__desc desc desc_mb">
Celadon CS HTML - Coming Soon page example
</div>
<div class="countdown__counter counter" data-counter-js></div>
<div class="countdown__btns">
<a href="https://get-web.site/" class="btn">
<div class="btn__content">Go to the website</div>
</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
-->