mirror of
https://github.com/selenite-cc/flasharchive.git
synced 2025-01-22 12:42:53 -03:00
Add files via upload
This commit is contained in:
parent
725a456ed3
commit
f5c4ca26b9
3 changed files with 114 additions and 3 deletions
|
@ -3,12 +3,23 @@
|
|||
<link rel="shortcut icon" type="image/jpg" href="img/favicon.ico"/>
|
||||
<head>
|
||||
<title>Flash Games Archive</title>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Amaranth&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<img class="logo" src="img/logo2.png" alt="logo">
|
||||
<h1>Welcome to the Flash Games Archive.</h1>
|
||||
<nav>
|
||||
<ul class="nav__links">
|
||||
<button style="margin-right: 20px;" onclick="window.location.href='index.html'";">Home</button>
|
||||
|
||||
<button onclick="window.location.href='info.html'";>Information</button>
|
||||
|
||||
</nav>
|
||||
</header>
|
||||
<center>
|
||||
<h1>Welcome to the Flash Games Archive.</h1>
|
||||
<p>This is a quick website made using <a href="https://ruffle.rs">Ruffle</a> and GitHub. If you want the original repo to download the games, go to <a href="https://github.com/Games-From-Flash/swf">GitHub</a> and all of the SWF files should be there, along with all of the HTML files that I used to make this site.</p>
|
||||
<p><a href="info.html">Information</a>
|
||||
<button onclick="window.location.href='achieveunlocked.html';">Achievement Unlocked</button>
|
||||
<button onclick="window.location.href='aow.html';">Age of War</button>
|
||||
<button onclick="window.location.href='btd.html';">Bloons TD</button>
|
||||
|
@ -54,4 +65,4 @@
|
|||
<button onclick="window.location.href='hardestgame.html';">The World's Hardest Game</button>
|
||||
</center>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
29
html/info.html
Normal file
29
html/info.html
Normal file
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<link rel="shortcut icon" type="image/jpg" href="img/favicon.ico"/>
|
||||
<head>
|
||||
<title>Flash Games Archive</title>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Amaranth&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<img class="logo" src="img/logo2.png" alt="logo">
|
||||
<h1>Welcome to the Flash Games Archive.</h1>
|
||||
<nav>
|
||||
<ul class="nav__links">
|
||||
<button style="margin-right: 20px;" onclick="window.location.href='index.html'";>Home</button>
|
||||
<button onclick="window.location.href='info.html'";>Information</button>
|
||||
</nav>
|
||||
</header>
|
||||
<center>
|
||||
<p>The Flash Archive is a website with some Flash Games avaliable to play, there are currently <i>44</i> games available to play. This website was made in mind to also provide kids in schools who have free time to be able to play old games they used to enjoy but have not been able to play because of Flash shutting down.</p>
|
||||
|
||||
<p>The Flash Archive uses Github to host the files and as the main host, Ruffle as the service to play the games, and Glitch and Codesandbox as alternative hosts.</p>
|
||||
|
||||
<p>There are 5 links that you can use to play. We have <a href="https://rawcdn.githack.com/Games-From-Flash/swf/main/html/index.html">Githack</a>, <a href="https://gitcdn.link/cdn/Games-From-Flash/swf/main/html/index.html">Gitcdn.link</a>, <a href="https://gitcdn.xyz/cdn/Games-From-Flash/swf/main/html/index.html">Gitcdn.xyz</a>, <a href="#">Codesandbox</a>, and <a href="#">Glitch</a>.</p>
|
||||
|
||||
<p>Uncompatible Games:</p><p>Run Series, Fancy Pants Adventure Series, Super Smash Flash 2, Burrito Bison.</p>
|
||||
</center>
|
||||
</body>
|
||||
</html>
|
71
html/style.css
Normal file
71
html/style.css
Normal file
|
@ -0,0 +1,71 @@
|
|||
* {
|
||||
font-family: 'Amaranth', sans-serif;
|
||||
}
|
||||
|
||||
body {
|
||||
background: #3e3f57
|
||||
}
|
||||
|
||||
p {
|
||||
color:#b5b7eb;
|
||||
}
|
||||
|
||||
h1 {
|
||||
position:relative;
|
||||
left:80px;
|
||||
color:#b5b7eb;
|
||||
}
|
||||
|
||||
button {
|
||||
background-color: #515357;
|
||||
color: #a0b4db;
|
||||
border-radius: 5px;
|
||||
padding: 3px 1%
|
||||
}
|
||||
|
||||
a:link {
|
||||
color:#a0b4db;
|
||||
}
|
||||
|
||||
a:visited {
|
||||
color:#b5b7eb;
|
||||
}
|
||||
|
||||
header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 15px 10%;
|
||||
}
|
||||
|
||||
.logo {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.nav__links {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.nav__links button {
|
||||
display: inline-block;
|
||||
padding: 10px 10px;
|
||||
}
|
||||
|
||||
.nav__links li a {
|
||||
transition: all 0.3s ease 0s;
|
||||
}
|
||||
|
||||
.nav__links li a:hover {
|
||||
color:
|
||||
}
|
||||
|
||||
.divider {
|
||||
width:5px;
|
||||
height:auto;
|
||||
display:inline-block;
|
||||
}
|
||||
.divide {
|
||||
margin-left:100px;
|
||||
}
|
||||
|
||||
|
Loading…
Add table
Reference in a new issue