-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslider-bg.html
More file actions
129 lines (104 loc) · 3.03 KB
/
Copy pathslider-bg.html
File metadata and controls
129 lines (104 loc) · 3.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>comz | Coming Soon Template</title>
<!-- Bootstrap -->
<link href="css/font-awesome.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<p class="top-text">
<span class="main-color">we are almost </span>
done with we are coming up with something
<span class="main-color"> original.</span>
</p>
<p class="message">
STAY TUNED<span class="main-color">!</span>
</p>
<div class="countdown">
<div class="element">
<span class="days"></span>
<p>DAYS</p>
</div>
<div class="element">
<span class="hours"></span>
<p>HOURS</p>
</div>
<div class="element">
<span class="minutes"></span>
<p>MINUTES</p>
</div>
<div class="element">
<span class="seconds"></span>
<p>SECONDS</p>
</div>
</div>
<div class="contact">
<p>Type your email address & get updates</p>
<form class="form-wrapper" method="post">
<input type="text" name="email" placeholder="Join Newsletter">
<button type="submit">SUBMIT</button>
</form>
<div class="social-icons">
<a href="#">
<span class="icon">
<i class="fa fa-facebook fa-fw" aria-hidden="true"></i>
</span>
</a>
<a href="#">
<span class="icon">
<i class="fa fa-twitter fa-fw" aria-hidden="true"></i>
</span>
</a>
<a href="#">
<span class="icon">
<i class="fa fa-google-plus fa-fw" aria-hidden="true"></i>
</span>
</a>
<a href="#">
<span class="icon">
<i class="fa fa-dribbble fa-fw" aria-hidden="true"></i>
</span>
</a>
<a href="#">
<span class="icon">
<i class="fa fa-pinterest fa-fw" aria-hidden="true"></i>
</span>
</a>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery.min.js"></script>
<script src="js/jquery.countdown.min.js" charset="utf-8"></script>
<script src="js/jquery.backstretch.js"></script>
<script>
$.backstretch([
"images/1.jpg",
"images/2.jpg",
"images/3.jpg"
], {
fade: 750,
duration: 4000
});
</script>
<script type="text/javascript">
$('.countdown').countdown('2017/03/07', function(event) {
$('.days').html(event.strftime('%D'));
$('.hours').html(event.strftime('%H'));
$('.minutes').html(event.strftime('%M'));
$('.seconds').html(event.strftime('%S'));
});
</script>
</body>
</html>