Update and clean up HTML files, upgrade structure

This commit is contained in:
Andrew Illarionov 2023-09-27 12:41:04 +03:00
parent fbd0d50c1e
commit aa6fa84d2d
8 changed files with 133 additions and 60 deletions

BIN
favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

Before

Width:  |  Height:  |  Size: 6.4 KiB

After

Width:  |  Height:  |  Size: 6.4 KiB

View File

@ -1,35 +1,37 @@
<head>
<title>Click to Download</title>
<link rel="icon" type="image/x-icon" href="/images/favicon.png">
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="darkreader-lock">
<script>
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
document.querySelector('html').onclick = function() {
document.title = 'Downloading...';
var video=document.getElementById('myVideo');
video.style.cursor = 'default';
video.play();
video.addEventListener('ended', function() {
document.title = 'Download complete!';
sleep(3000);
window.location.replace('http://youtube.com/endermanch');
});
}
</script>
<style>
video {
cursor: pointer;
}
</style>
</head>
<meta name="Author" content="Endermanch">
<meta name="Keywords" content="fast-dl, fast, download, cdn, delivery, files">
<meta name="Description" content="A free and blazing fast download service.">
<video nocontrols id="myVideo" height=100% width=100%>
<source src="/media/download.mp4" type="video/mp4">
</video>
<meta property="og:type" content="website">
<meta property="og:title" content="Click Here to Download">
<meta property="og:description" content="Downloading is an extremely important aspect of your life. A free, functioning and blazing fast download service is necessary.">
<meta property="og:url" content="https://fast-dl.cc">
<meta property="og:image" content="http://fast-dl.cc/images/download.png">
<meta property="og:image:secure_url" content="https://fast-dl.cc/images/download.png">
<meta property="og:image:width" content="256">
<meta property="og:image:height" content="256">
<meta property="og:image:alt" content="Download">
<title>Click to Download</title>
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" href="/styles/styles.css" type="text/css" />
</head>
<body>
<div>
<video class="fullscreen" id="player" disablePictureInPicture>
<source src="/media/download.mp4" type="video/mp4">
</video>
</div>
</body>
</html>

View File

@ -1,27 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Free & Fast Downloads | fast-dl.xyz</title>
<style>
body {
background-image: url("images/background.png");
}
</style>
</head>
<body>
<center>
<h1>Fast & Free Downloads</h1>
<p>NoEscape is a trojan creepypasta made by Enderman in 2020. Many people would love to download its source code, but unfortunately it's closed-source...<br>until TODAY! Our good collaborator Noobes has decompiled and unpacked the trojan and so we present the fresh download link for it. Download <b>NOESCAPE</b> free source code RIGHT NOW (click the link below)</p>
<font size=15><a href="noescape-code.zip">DOWNLOAD NOW</a></font>
<h2>Video tutorial (how to download):</h2>
<video controls>
<source src="\media\how-to-download.mp4" type="video/mp4">
</video>
</center>
</body>
</html>

60
noescape/index.html Normal file
View File

@ -0,0 +1,60 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="darkreader-lock">
<meta name="Author" content="Endermanch">
<meta name="Keywords" content="noescape, noescape.exe, noescape source code, source code, fast-dl, fast, download, cdn, delivery, files">
<meta name="Description" content="Download NoEscape.exe source code (253KB)...">
<meta property="og:type" content="website">
<meta property="og:title" content="NoEscape.exe">
<meta property="og:description" content="Download NoEscape.exe source code (253KB)...">
<meta property="og:url" content="https://fast-dl.cc/noescape">
<meta property="og:image" content="http://fast-dl.cc/images/noescape.png">
<meta property="og:image:secure_url" content="https://fast-dl.cc/images/noescape.png">
<meta property="og:image:width" content="256">
<meta property="og:image:height" content="256">
<meta property="og:image:alt" content="NoEscape">
<title>NoEscape.exe Source Code / Free & Fast Downloads / fast-dl.cc</title>
<style>
body {
background-image: url("/images/background.png");
}
.center {
display: flex;
flex-direction: column;
justify-content: center;
}
.link {
font-size: 20px;
}
</style>
</head>
<body>
<div class="center">
<h1>Fast & Free Downloads</h1>
<p>
NoEscape is a trojan creepypasta made by Enderman in 2020.
Many people would love to download its source code, but unfortunately it's closed-source...<br />
until TODAY! Our good collaborator Noobes has decompiled and unpacked the trojan and so, we present the fresh download link for it.
Download <strong>NOESCAPE</strong> free source code RIGHT NOW (click the link below)
</p>
<a class="link" href="code.zip" download>DOWNLOAD NOW</a>
<h2>Video tutorial (how to download):</h2>
<video controls disablePictureInPicture>
<source src="/media/how-to-download.mp4" type="video/mp4">
</video>
</div>
</body>
</html>

20
scripts/index.js Normal file
View File

@ -0,0 +1,20 @@
const redirect = 'https://go.enderman.ch/youtube';
let video = document.querySelector('#player');
async function sleep(ms) {
await new Promise(resolve => setTimeout(resolve, ms));
}
document.querySelector('.fullscreen').onclick = () => {
document.title = 'Downloading...';
video.style.cursor = 'default';
video.play();
}
video.addEventListener('ended', async () => {
document.title = 'Download complete!';
await sleep(3000);
window.location.replace(redirect);
});

18
styles/styles.css Normal file
View File

@ -0,0 +1,18 @@
body {
margin: 0;
background-color: white;
}
@media (prefers-color-scheme: dark) {
body {
margin: 0;
background-color: black;
}
}
.fullscreen {
width: 100%;
height: 100%;
cursor: pointer;
}