-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
57 lines (50 loc) · 1.12 KB
/
index.php
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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta http-equiv="cache-control" content="max-age=0" />
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<meta http-equiv="pragma" content="no-cache" />
<title>This site is brand new</title>
<style>
html
{
font-size: 62.5%;
}
body
{
margin: 0;
padding: 0;
font-size: 1.6rem;
color: #353535;
background: linear-gradient(to bottom, #ccc, #fff 30%);
background-repeat: no-repeat;
}
h1,h3
{
font-family: 'Montserrat', sans-serif;
text-align: center;
margin: 0;
padding: 0;
text-transform: uppercase;
}
h1
{
margin: 20rem 0 1rem;
font-size: 3rem;
}
h3
{
font-weight: normal;
font-size: 1.4rem;
}
</style>
</head>
<body>
<h1>This Site is Brand New</h1>
<h3>Please check back again soon</h3>
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
</body>
</html>