-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcoming_soon.html
62 lines (60 loc) · 1.56 KB
/
coming_soon.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
<!-- Bootstrap icons-->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"
rel="stylesheet"
type="text/css"
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<!-- Google fonts-->
<link
href="https://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic"
rel="stylesheet"
type="text/css"
/>
<style>
.rotate {
animation: rotation 3s infinite linear;
}
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
</style>
</head>
<body>
<header class="bg-primary bg-gradient text-white">
<div class="container m-sm-5">
<p class="lead text-center m-sm-5">
<img
src="assets/img/sad_doge.png"
class="rotate"
width="100"
height="100"
/>
Coming Soon...
<img
src="assets/img/sad_doge.png"
class="rotate"
width="100"
height="100"
/>
</p>
</div>
<div class="container m-sm-5 text-center">
<a class="btn btn-lg btn-light py-1" href="index.html">Back</a>
</div>
</header>
</body>
</html>