-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
372 lines (163 loc) · 6 KB
/
index2.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport'/>
<meta name="viewport" content="width=device-width"/>
<title>Your Website Is Ready - InfinityFree</title>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<style type="text/css">
/*!
=========================================================
* Coming Sssoon Page - v1.3.2
=========================================================
* Product Page: https://www.creative-tim.com/product/coming-sssoon-page
* Copyright 2017 Creative Tim (http://www.creative-tim.com)
* Licensed under MIT (https://github.com/creativetimofficial/coming-sssoon-page/blob/master/LICENSE.md)
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*/
body{
}
/* General overwrite */
a{
color: #2C93FF;
}
a:hover, a:focus {
color: #1084FF;
}
a:focus, a:active,
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
select::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
outline : 0;
}
/* Typography */
p{
font-size: 16px;
line-height: 1.6180em;
}
.main{
background-position: center center;
background-size: cover;
height: auto;
left: 0;
min-height: 100%;
min-width: 100%;
position: absolute;
top: 0;
width: auto;
}
.cover{
position: fixed;
opacity: 1;
background-color: rgba(0,0,0,.6);
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 1;
}
.cover.black{
background-color: rgba(0,0,0,.6);
}
.logo-container .logo{
overflow: hidden;
border-radius: 50%;
border: 1px solid #333333;
width: 60px;
float: left;
}
.main .logo{
color: #FFFFFF;
font-size: 56px;
font-weight: 300;
position: relative;
text-align: center;
text-shadow: 0 0 10px rgba(0, 0, 0, 0.33);
margin-top: 150px;
z-index: 3;
}
.main .logo.cursive{
font-family: 'Grand Hotel',cursive;
font-size: 82px;
}
.main .content{
position: relative;
z-index: 4;
}
.main .motto{
min-height: 140px;
}
.main .motto, .main .subscribe .info-text{
font-size: 28px;
color: #FFFFFF;
text-shadow: 0 1px 4px rgba(0, 0, 0, 0.33);
text-align: center;
margin-top: 50px;
}
.main .subscribe .info-text{
font-size: 18px;
margin-bottom: 30px;
}
.footer{
position: relative;
bottom: 20px;
right: 0px;
width: 100%;
color: #AAAAAA;
z-index: 4;
text-align: right;
margin-top: 50px;
}
.footer a{
color: #FFFFFF;
}
@media (min-width:991px){
.footer{
position: fixed;
bottom: 20px;
}
}
</style>
<!-- Fonts -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Grand+Hotel' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="main" style="background-image: url('https://storage.googleapis.com/default-site/2017/background.jpg')">
<div class="cover black" data-color="black"></div>
<div class="container">
<h1 class="logo cursive">
Let's Make Something Awesome
</h1>
<div class="content">
<h4 class="motto">Your account is all set up, it's time to build your website!</h4>
<div class="subscribe">
<h5 class="info-text">
Not sure where to start? Here are some suggestions: <br>
</h5>
<p class="info-text">
Quickly build a beautiful website with the site builder. <br>
Install a script or CMS with Softaculous. <br>
Upload your website with FTP or a file manager. <br>
Join the free hosting <a href="https://forum.infinityfree.net">community</a>.
</p>
</div>
</div>
</div>
<div class="footer">
<div class="container">
Proudly powered by <br>
<a href="https://infinityfree.net"><img src="https://storage.googleapis.com/default-site/2017/logo.png" alt="InfinityFree" height="40px"></a>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-1.12.4.min.js" type="text/javascript"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" type="text/javascript"></script>
</body>
</html>