-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (63 loc) · 2.56 KB
/
Copy pathindex.html
File metadata and controls
69 lines (63 loc) · 2.56 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
<!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>Coming Soon</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Font -->
<link href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="font-awesome-4.7.0/css/font-awesome.min.css">
<!-- Master Style -->
<link rel="stylesheet" href="master.css">
</head>
<body>
<!-- Main Section -->
<div id="orange">
<h1>Coming Soon</h1>
<ul id="countdown">
<li>
<span class="days">00</span>
<p class="timeRefDays">Days</p>
</li>
<li>
<span class="hours">00</span>
<p class="timeRefHours">Hours</p>
</li>
<li>
<span class="minutes">00</span>
<p class="timeRefMinutes">Minutes</p>
</li>
<li>
<span class="seconds">00</span>
<p class="timeRefSeconds">Seconds</p>
</li>
</ul>
<p class="lead">"Plan in decades, think in years, work in months and live in days"</p>
</div> <!-- End of Main Section -->
<div class="social-icons">
<a href="https://www.facebook.com/stefanblade.omerovic" class="social-icon"><i class="fa fa-facebook"></i></a>
<a href="https://www.linkedin.com/in/stefan-omerovic-7b9757135/" class="social-icon"><i class="fa fa-linkedin"></i></a>
<a href="https://github.com/Omerko96" class="social-icon"><i class="fa fa-github"></i></a>
<a href="mailto:stefan.omerovic96@gmail.com" class="social-icon"><i class="fa fa-envelope"></i></a>
</div> <!-- End of Social Icons -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<!-- Countdown -->
<script src="js/countdown.js"></script>
<script>
$(document).ready(function(){
$("#countdown").countdown({
date: "28 november 2019 12:00:00",
format: "on"
});
});
</script>
</body>
</html>