-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcoming.html
More file actions
120 lines (113 loc) · 5.57 KB
/
coming.html
File metadata and controls
120 lines (113 loc) · 5.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Coming Soon</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/main.css?v=0.002" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<link rel="shortcut icon" href="images/ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="images/ico/apple-touch-icon-57-precomposed.png">
</head><!--/head-->
<body>
<div class="logo-image">
<a href="index.html"><img class="img-responsive" src="images/logo.png" alt=""> </a>
</div>
<section id="coming-soon">
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<div class="text-center coming-content">
<h1>UNDER CONSTRUCTION</h1>
<p>We have been spending long hours in order to launch our new website.
We will offer freebies, awesome services and featured content of our latest work. Join our mailing list to stay up to date.</p>
<div class="social-link">
<span><a href="#"><i class="fa fa-facebook"></i></a></span>
<span><a href="#"><i class="fa fa-twitter"></i></a></span>
<span><a href="#"><i class="fa fa-google-plus"></i></a></span>
</div>
</div>
</div>
<div class="col-sm-12">
<div class="time-count">
<ul id="countdown">
<li class="angle-one">
<span class="days time-font">00</span>
<p>Days</p>
</li>
<li class="angle-two">
<span class="hours time-font">00</span>
<p>Hours</p>
</li>
<li class="angle-three">
<span class="minutes time-font">00</span>
<p class="minute">Mins</p>
</li>
<li class="angle-four">
<span class="seconds time-font">00</span>
<p>Secs</p>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section id="subscribe">
<div class="container">
<div class="row">
<div class="col-sm-10 col-sm-offset-1">
<div class="row">
<div class="col-sm-6">
<h2><i class="fa fa-envelope-o"></i> SUBSCRIBE TO OUR NEWSLETTER</h2>
<p>You're not going to hit a ridiculously long phone menu when you call me. Your email isn't going to the inbox abyss,never to be seen or heard from again. At Choice Screening, I provide the exceptional service I'd want to exprience myself!</p>
</div>
<div class="col-sm-6 newsletter">
<form method="post" action="https://www.flexyform.com/f/f782f80218d6a07565f2b0e4e2d18bb35d201010" id="newsletter">
<input class="form-control" type="email" name="email" value="" placeholder="Enter Your email">
<i class="fa fa-check"></i>
</form>
<p>Don't worry we will not use your email for spam</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="coming-soon-footer" class="container">
<div class="row">
<div class="col-sm-12">
<div class="text-center">
<p>© RapidSec 2019. All Rights Reserved.</p>
</div>
</div>
</div>
</section>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/coundown-timer.js"></script>
<script type="text/javascript" src="js/wow.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript">
//Countdown js
$("#countdown").countdown({
date: "10 june 2020 12:00:00",
format: "on"
},
function() {
// callback function
});
</script>
</body>
</html>