-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcoming-soon.html
126 lines (105 loc) · 2.05 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
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
<!DOCTYPE html>
<html>
<head>
<title>Crizan</title>
<link rel="icon" href="../logo.png" type="images/png">
<link href='https://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'>
<style>
body {
font-size: 20px;
background: url("images/bg.jpg");
background-repeat: no-repeat;
font-family: sans-serif;
transition: ease-in-out all 300ms;
}
.soon {
position: absolute;
width: 600px;
height: 270px;
left: 0;
right: 0;
top: -390px;
bottom: 0;
margin-top: 0%;
margin: auto;
max-width: 100%;
max-height: 100%;
}
.soon h1 {
text-align: center;
color: rgb(212, 203, 203);
font-size: 3em;
font-family: sans-serif;
font-weight: 400;
}
.soon p {
color: #fff;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-weight: 400;
text-align: center;
margin: 0 auto;
font-size: 1.2em;
padding: 1.2em 0;
}
.soon form {
margin: 0 auto;
text-align: center;
}
.count {
position: relative;
margin-bottom: 3%;
right: 0%;
font-family: sans-serif;
}
.count span {
color: #ffffff;
background-color: black;
}
button {
padding: 10px 10px;
background: #d7c279a6;
color: #000;
width: 40%;
font-size: 20px;
border-radius: 45px;
cursor: pointer;
border: none;
margin-top: -10px;
}
a {
text-decoration: none;
color: black;
}
a:hover {
text-decoration: underline;
}
button:hover {
cursor: pointer;
background-color: #f7f7f7;
color: rgb(0, 0, 0);
}
</style>
</head>
<body>
<div class="soon">
<h1>Coming Soon</h1>
<p><b>
This Website is under construction. Stay tuned for more!
<br>
We will update you daily. Stay updated
</b>
</p>
<div class="count">
<br>
<br><br>
<center>
<h2><span>Stay Connected</span></h2>
</center>
</div>
<form>
<button><a href="index.html">Go To Home</a></button>
<font color="white"> | </font> <button><a href="courses.html">Go To Courses</a></button>
</form>
</div>
</body>
</html>