Delete index.html
This commit is contained in:
parent
a30f5fdd95
commit
9a282428b0
1 changed files with 0 additions and 42 deletions
42
index.html
42
index.html
|
|
@ -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>
|
||||
Loading…
Add table
Reference in a new issue