-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
78 lines (61 loc) · 1.99 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
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
<!doctype html>
<html>
<head>
<!--Apple Webkit Stuff-->
<meta name="apple-mobile-web-app-capable" content="yes">
<link rel="apple-touch-icon" sizes="152x152" href="googledrivelogo.webp">
<link rel="icon" type="image/png" href="googledrivelogo.webp">
<!--Google Analytics Stuff-->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5WEKJFTJZQ"></script>
<script src="/analytics.js"></script>
<!--Google Adsense-->
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-3513233934963364"
crossorigin="anonymous"></script>
<!--Title-->
<title>Google Drive</title>
</head>
<body>
<!--main page-->
<div id="standalone">
<h1><b>WELCOME!</b></h1>
<p>Hello! This is the hub of all of my forks. The code in these forks is not mine,
it belongs to the creators of the code.</p>
<br>
<a href="mg">MGAlternative Fork</a>
<br>
<a href="simplegimes">Simplegimes Fork</a>
<br>
<a href="cbflash">CBFlash Fork</a>
<br>
<a href="blockblast">Block Blast</a>
<br>
<a href="retro-boowl">Retro Bowl</a>
<hr style="width:25%;text-align:left;margin-left:0;color:black;">
<a href="https://5.161.68.227">Asteroid v3</a>
<br>
<a href="https://167.71.43.43/">Croxy</a>
<br>
<a href="https://fmoviesonhd.com/">Movies</a>
THIS SITE IS MOVED TO https://freegoogledrive.github.io
</div>
<!--Add To Homescreen Request-->
<div id="webpage">
<h1>PLEASE ADD TO HOMESCREEN</h1>
<img src="AddToHomescreen.jpeg" width="25%">
</div>
<!--Check if added to homescreen-->
<script>
var standalone = document.getElementById("standalone");
var webpage = document.getElementById("webpage");
if (window.navigator.standalone || !(/iPad|iPhone|iPod|Mac/.test(navigator.userAgent))) {
standalone.style.display = "block"; // show standalone div
webpage.style.display = "none"; // hide webpage div
}
else {
standalone.style.display = "none"; // hide standalone div
webpage.style.display = "block"; // show webpage div
}
</script>
<body style="background-color:#FD8219;">
</body>
</html>