-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
53 lines (47 loc) · 1.69 KB
/
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
45
46
47
48
49
50
51
52
<html>
<head>
<meta charset="utf-8"></meta>
<title>Balloon Game - The Yard</title>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-72694027-2', 'auto');
ga('send', 'pageview');
</script>
<style>
body,div
{
margin:0px;
padding:0px;
font:12px Helvetica;
}
</style>
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<!-- Vault Dropdown -->
<link rel="stylesheet" href="https://use.typekit.net/vis0yeq.css">
<script src="FloatingDropdown/index.js"></script>
</head>
<body style="width:100%; height:100%; background-color:#444444; position:absolute; top:0px; left:0px;">
<floating-dropdown>
<style>
floating-dropdown {
--custom-font: "brandon-grotesque";
}
</style>
<img slot="header" src="FloatingDropdown/vault-library-logo.png" alt="Vault Games Library" width="250px">
<span slot="desc" class="content">
Field Day presents the largest collection of
<span style="color:#00ECD0">FREE</span>
learning games on the web.
</span>
<span slot="button-label" class="content">
OPEN VAULT
</span>
</floating-dropdown>
<div id="background" style="width:100%; height:100%; background-color:#444444; position:absolute; top:0px; left:0px;">
<iframe id="content" scrolling="no" style="width:880px; height:660px; display:block; margin:10px auto; overflow:hidden; border:0px;" src="iframe.html"></iframe>
</div>
</body>
</html>