-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (44 loc) · 1000 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>CONVERGAME - COMING SOON!</title>
<style>
html {font-size: 62.5%}
body {
background: #2c3e50;
color: #FEFEFE;
font-family: 'Oswald', sans-serif;
}
h1 {
font-size: 72px; font-size: 7.2rem;
}
h2 {
font-size: 48px; font-size: 4.8rem;
}
.coming-soon {
padding: 25vh 0;
}
.text-center {text-align: center;}
</style>
</head>
<body>
<div class="coming-soon">
<h1 class="text-center">CONVERGAME</h1>
<h2 class="text-center">Coming Soon!</h2>
</div>
<script type="text/javascript">
WebFontConfig = {
google: { families: [ 'Oswald::latin' ] }
};
(function() {
var wf = document.createElement('script');
wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
'://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();
</script>
</body>
</html>