Delete index.html

This commit is contained in:
riqvip 2024-09-16 16:18:44 +10:00 committed by GitHub
parent a30f5fdd95
commit 9a282428b0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,42 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sideload Guide</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<h1>Sideload Guide</h1>
</header>
<main>
<section class="box">
<h2>Welcome to the Sideload Guide</h2>
<p>This guide will help you understand how to sideload apps. (Alot of other random text if you want to type it here lol)</p>
</section>
<section class="box">
<h2>Tutorial</h2>
<p>Follow this tutorial for a step-by-step process on sideloading apps. (Other text here)</p>
</section>
</main>
<button id="backToTop" onclick="scrollToTop()">Back to Top</button>
</div>
<script>
function scrollToTop() {
window.scrollTo({ top: 0, behavior: 'smooth' });
}
window.onscroll = function() {
const button = document.getElementById('backToTop');
if (document.body.scrollTop > 300 || document.documentElement.scrollTop > 300) {
button.style.display = "block";
} else {
button.style.display = "none";
}
};
</script>
</body>
</html>