forgot that 4 of them were git repos :skull

This commit is contained in:
neon443
2024-09-28 10:26:25 +01:00
parent 689c1e3167
commit 2a8ef5aec9
149 changed files with 45223 additions and 0 deletions

6
games/fancade/README.md Normal file
View File

@@ -0,0 +1,6 @@
# Fancade, in your browser!
Not Pirated!
## Included Games:
* [Fancade](https://neon443.github.io/fancade)
* [Drive Mad](https://neon443.github.io/fancade/drive.html)

View File

@@ -0,0 +1,10 @@
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<iframe id="fancade" src="https://play.fancade.com/5F084A0BCE06B710?max_w=2800&max_h=2800" frameborder="0" height="100%" width="100%" title=Drive Mad Play online"></iframe>
</body>
</html>

10
games/fancade/index.html Normal file
View File

@@ -0,0 +1,10 @@
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<iframe id="fancade" src="https://play.fancade.com/?max_h=900&max_w=500" frameborder="0" height="100%" width="100%" title=Other_game></iframe>
</body>
</html>

15
games/fancade/style.css Normal file
View File

@@ -0,0 +1,15 @@
* {
margin: 0;
padding: 0;
}
#fancade {
border: 0;
width: 100%;
height: 100%;
overflow: hidden;
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
}