Merge pull request #1 from ChrisplayzYT/main

little redesign
This commit is contained in:
TheErrorExe 2025-02-08 11:40:36 +01:00 committed by GitHub
commit eacccffe6d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
13 changed files with 206 additions and 88 deletions

BIN
15.wav Normal file

Binary file not shown.

View File

@ -3,6 +3,7 @@
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ReviveMii - 404</title>
<audio src="/assets/Error.mp3" autoplay="" preload></audio>
<style>
body {
display: flex;
@ -27,7 +28,7 @@
<img src="/4error.jpg">
<br>
<a href="/">Home</a>
<p style="color: grey">TheErrorExe & ReviveMii Project 2024</p>
<p style="color: grey">TheErrorExe & ReviveMii Project 2025</p>
</div>
</body>
</html>

View File

@ -9,16 +9,34 @@
<meta name="description" content="About Page for the ReviveMii Project.">
</head>
<body>
<header>
<div id="loadicon" style="display:none; width:40px; height:40px; position:absolute;top:8px;left:8px; overflow:hidden;z-index:1050;" >
<script>
var loadingsfx = new Audio("15.wav");
function startloading() {
document.getElementById("loadicon").style.display="block";
setTimeout(stoploading,2000); // if page dont load past this point loader stops xD
loadingsfx.play();
loadingsfx.loop=true;
loadingsfx.currentTime = 0;
}
function stoploading() {
document.getElementById("loadicon").style.display="none";
loadingsfx.pause();
}
</script>
<img src="/wiiloading.gif" style="display:flex; width:40px; height:40px;" id="wiiring" alt="">
</div>
<header onload="stoploading();">
<div class="logo-container">
<a href="index.html" class="logo" style="text-decoration: none">
<a onclick="startloading();" href="index.html" class="logo" style="text-decoration: none">
<img src="favicon.ico" alt="ReviveMii Logo" class="logo-img" style="text-decoration: none">
<span>ReviveMii</span>
</a>
</div> <nav>
<a href="index.html">Home</a>
<a href="projects.html">Projects</a>
<a href="about.html">About</a>
<a onclick="startloading();" href="index.html">Home</a>
<a onclick="startloading();" href="projects.html">Projects</a>
<a onclick="startloading();" href="about.html">About</a>
</nav>
</header>
<br>
@ -27,7 +45,7 @@
<br>
<br>
<div id="cookiePopup" style="position: fixed; bottom: 0; left: 0; right: 0; background-color: #333; color: white; padding: 15px; text-align: center; font-size: 16px; z-index: 1000; display: none;">
This website uses cookies. <a href="/wc.html" style="color: blue; text-decoration: underline">What Cookies</a>
This website uses cookies. <a href="/wc.html" style="color: blue; text-decoration: underline">What Cookies</a>
<button onclick="acceptCookies()" style="background-color: #4CAF50; color: white; border: none; padding: 10px 20px; cursor: pointer; font-size: 14px; margin-left: 20px;">Accept</button>
</div>
@ -43,22 +61,22 @@
</script>
<section class="about">
<div class="container">
<h1>About ReviveMii</h1>
<h1 onclick="startloading();">About ReviveMii</h1>
<p>ReviveMii is a Nintendo Revival Project</p>
<br>
<br>
<br>
<a href="/projects.html" class="cta">Projects and Services</a>
<a href="/projects.html" onclick="startloading();" class="cta">Projects and Services</a>
</div>
</section>
<footer>
<p>© 2024 ReviveMii. All Rights Reserved.</p>
<p><a href="/index.html#end">More Links in Home Footer</a><p>
<p><a href="contact.html">Contact Us</a></p>
<p><a href="/discord-redirect.html">Join Discord</a></p>
<p><a href="https://github.com/ReviveMii/">GitHub</a></p>
<p><a href="https://youtube.com/@ReviveMii-Project">YouTube</a></p>
<p onclick="startloading();"><a href="/index.html#end">More Links in Home Footer</a><p>
<p onclick="startloading();"><a href="contact.html">Contact Us</a></p>
<p onclick="startloading();"><a href="/discord-redirect.html">Join Discord</a></p>
<p onclick="startloading();"><a href="https://github.com/ReviveMii/">GitHub</a></p>
<p onclick="startloading();"><a href="https://youtube.com/@ReviveMii-Project">YouTube</a></p>
</footer>
</body>
</html>

BIN
assets/Error.mp3 Normal file

Binary file not shown.

View File

@ -40,9 +40,11 @@ header .logo-container {
}
header .logo-img {
width: 25px;
width: 25px;
max-width: 25px;
height: auto;
margin-right: 10px;
position:relative; top:5px;
}
header .logo span {
@ -93,7 +95,7 @@ header nav a:hover {
padding: 10px 30px;
font-size: 1rem;
color: #ffffff;
background-color: #00c2ff;
background-color: #34BEED;
border: none;
border-radius: 5px;
cursor: pointer;
@ -137,10 +139,16 @@ p {
overflow: hidden;
width: 90%;
transition: transform 0.3s ease;
z-index:-10px;
}
.project-card img {
border-radius: 10px;
border:2px solid #00c2ff;
}
.project-card:hover {
transform: translateY(-10px);
z-index:-10px;
}
.project-card img {

BIN
imageshare/closeerror.mp3 Normal file

Binary file not shown.

BIN
imageshare/error.mp3 Normal file

Binary file not shown.

View File

@ -9,7 +9,25 @@
<meta name="description" content="Use the Nintendo Image Share again!">
</head>
<body>
<header>
<div id="loadicon" style="display:none; width:40px; height:40px; position:fixed;top:8px;left:8px; overflow:hidden;z-index:1050;" >
<script>
var loadingsfx = new Audio("/15.wav");
function startloading() {
document.getElementById("loadicon").style.display="block";
setTimeout(stoploading,2000); // if page dont load past this point loader stops xD
loadingsfx.play();
loadingsfx.loop=true;
loadingsfx.currentTime = 0;
}
function stoploading() {
document.getElementById("loadicon").style.display="none";
loadingsfx.pause();
}
</script>
<img src="/wiiloading.gif" style="display:flex; width:40px; height:40px;" id="wiiring" alt="">
</div>
<header onload="stoploading();">
<div class="logo-container">
<a href="/index.html" class="logo" style="text-decoration: none">
<img src="/favicon.ico" alt="ReviveMii Logo" class="logo-img" style="text-decoration: none">
@ -27,34 +45,40 @@
<br>
<br>
</script>
<div id="popup" style="display:none; position:fixed; top:50%; left:50%; transform:translate(-50%, -50%); background:white; padding:20px; border:2px solid #333; box-shadow:0 4px 8px rgba(0,0,0,0.1); z-index:1000; width:80%; max-width:500px;">
<h2>ReviveMii Image Share</h2>
<p>The ReviveMii Image Share is no longer being developed. Please use <a href="http://i.retrosite.org" style="color: blue">i.retrosite.org</a> or <a href="http://theimageshare.com" style="color: blue">theimageshare.com</a>.</p>
<button onclick="closePopup()" style="background-color:#f44336; color:white; border:none; padding:5px 10px; cursor:pointer;">Close</button>
<div id="popup" style="display:none; position:fixed; top:50%; left:50%; transform:translate(-50%, -50%); background:white; padding:20px; border:2px solid #333; box-shadow:0 4px 8px rgba(0,0,0,0.1); z-index:1000; width:80%; max-width:500px; text-align:center;">
<h2 style="color:#323232; border-bottom:2px solid #323232; margin-bottom:3px; text-align:center;">ReviveMii Image Share</h2>
<p style="text-align:center; color: #b0b0b0; border-bottom:2px solid #323232;">The ReviveMii Image Share service is no longer being developed. <br> Please use <a href="http://i.retrosite.org" style="color: blue" target="_blank">i.retrosite.org</a> or <a href="http://theimageshare.com" style="color: blue" target="_blank">theimageshare.com</a>.</p>
<button onclick="closePopup()" style=" background-color:#f44336; color:white; border:none; padding:5px 10px; cursor:pointer; ">Close</button>
</div>
<div id="overlay" style="display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.5); z-index:999;"></div>
<div id="overlay" style="opacity:0%; display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.5); z-index:999; transition:.3s ease-in-out;"></div>
<script>
window.onload = function() {
setTimeout(function() {
document.getElementById('popup').style.display = 'block';
var err3ds = new Audio("/imageshare/error.mp3");
err3ds.play();
document.getElementById('overlay').style.display = 'block';
}, 1000);
document.getElementById('overlay').style.opacity="100%";
}, 800);
};
function closePopup() {
document.getElementById('popup').style.display = 'none';
var err3ds2 = new Audio("/imageshare/closeerror.mp3");
err3ds2.play();
document.getElementById('overlay').style.display = 'none';
document.getElementById('overlay').style.opacity="0%";
}
</script>
<section class="project-hero" id="p">
<section class="project-hero" id="p" style="margin-bottom:-34px;">
<div class="container">
<h1>ReviveMii Image Transfer</h1>
<p>A Revival for the Nintendo Image Share on 3ds and Wii U</p>
<button class="cta" onclick="location.href='#p'">Learn More</button>
</div>
</section>
<hr style=" position:relative; top:20px; width:95%; margin:auto;">
<section class="project-details">
<div class="container">
<div class="project-description">
@ -76,17 +100,18 @@
<li>• 3. Scan the QR Code with your Smart Phone or type the URL in your Computer</li>
<li>• 4. Download it</li>
</ul>
<h1 style="color: green">You now successfully transferred an Image from your Wii U/3DS to your Device!</h1>
<hr style="margin-top:5px;">
<h1 style="color: green; text-align:center;">You now successfully transferred an Image from your Wii U/3DS to your Device!</h1>
</div>
</div>
</section>
<footer>
<p>© 2024 ReviveMii.</p>
<p><a href="/index.html#end">More Links in Home Footer</a><p>
<p><a href="/contact.html">Contact Us</a></p> <p><a href="/feedback.html">Feedback</a></p>
<p><a href="/discord-redirect.html">Join Discord</a></p>
<p><a href="https://github.com/ReviveMii/">GitHub</a></p>
<p><a href="https://youtube.com/@revivemii">YouTube</a></p>
<p onclick="startloading();"><a href="/index.html#end">More Links in Home Footer</a><p>
<p onclick="startloading();"><a href="/contact.html">Contact Us</a></p> <p><a href="/feedback.html">Feedback</a></p>
<p onclick="startloading();"><a href="/discord-redirect.html">Join Discord</a></p>
<p onclick="startloading();"><a href="https://github.com/ReviveMii/">GitHub</a></p>
<p onclick="startloading();"><a href="https://youtube.com/@revivemii">YouTube</a></p>
</footer>
</body>

View File

@ -7,18 +7,37 @@
<link rel="stylesheet" href="css/1.css">
<meta name="description" content="We bring life back to the old Software from Nintendo with Internet Functionality with custom servers. We have Servers for YouTube on Wii and Nintendo Image Share. Keywords: Nintendo Wii, Nintendo Wii U, Nintendo 3DS, Nintendo DSi">
</head>
<header>
<div id="loadicon" style="display:none; width:40px; height:40px; position:fixed;top:8px;left:8px; overflow:hidden;z-index:1050;" >
<script>
var loadingsfx = new Audio("15.wav");
function startloading() {
document.getElementById("loadicon").style.display="block";
setTimeout(stoploading,2000); // if page dont load past this point loader stops xD
loadingsfx.play();
loadingsfx.loop=true;
loadingsfx.currentTime = 0;
}
function stoploading() {
document.getElementById("loadicon").style.display="none";
loadingsfx.pause();
}
</script>
<img src="/wiiloading.gif" style="display:flex; width:40px; height:40px;" id="wiiring" alt="">
</div>
<header onload="stoploading();">
<div class="logo-container">
<a href="index.html" class="logo" style="text-decoration: none">
<a onclick="startloading();" href="index.html" class="logo" style="text-decoration: none">
<img src="favicon.ico" alt="ReviveMii Logo" class="logo-img" style="text-decoration: none">
<span>ReviveMii</span>
</a>
</div>
</a>
<nav>
<a href="index.html">Home</a>
<a href="projects.html">Projects</a>
<a href="about.html">About</a>
<a onclick="startloading();" href="index.html">Home</a>
<a onclick="startloading();" href="projects.html">Projects</a>
<a onclick="startloading();" href="about.html">About</a>
</nav>
</header>
<br>
@ -26,19 +45,23 @@
<br>
<section class="hero">
<div>
<h1>ReviveMii</h1>
<img src="favicon.ico" alt="ReviveMii Logo" style="border-radius:8px; width:180px; max-width:180px; max-height:150px;">
<h1 style="color:#34BEED; ">ReviveMii</h1>
<p>A Nintendo Revival Service.</p>
<a href="projects.html" class="cta">Discover Featured Projects</a><br><br><br>
<a href="https://github.com/ReviveMii" class="cta">Source Code (GitHub)</a><br><br>
<iframe loading="lazy" src="https://status.errexe.xyz/badge?theme=dark" width="250" height="30" frameborder="0" scrolling="no"></iframe><br><br>
<a href="https://status.errexe.xyz/" class="cta">Check the Server Status</a>
<hr>
<br>
<a onclick="startloading();" href="projects.html" class="cta">Discover Featured Projects</a><br><br><br>
<a onclick="startloading();" href="https://github.com/ReviveMii" target="_blank" class="cta">Source Code (GitHub)</a><br><br>
<iframe loading="lazy" src="https://status.errexe.xyz/badge?theme=dark" target="_blank" width="250" height="30" frameborder="0" scrolling="no"></iframe><br><br>
<a onclick="startloading();" href="https://status.errexe.xyz/" target="_blank" class="cta">Check the Server Status</a>
<br>
<br>
<br>
<a href="/discord-redirect.html" class="cta">Join Discord</a>
<br>
<a onclick="startloading();" href="/discord-redirect.html" class="cta">Join Discord</a>
<br>
<br>
<hr>
</section>
<div id="cookiePopup" style="position: fixed; bottom: 0; left: 0; right: 0; background-color: #333; color: white; padding: 15px; text-align: center; font-size: 16px; z-index: 1000; display: none;">
This website uses cookies. <a href="/wc.html" style="color: blue; text-decoration: underline">What Cookies</a>
@ -56,18 +79,18 @@
</script>
<footer id="end" class="end">
<p>© 2025 ReviveMii</p>
<p><a href="/privacy">Privacy Policy</a></p>
<p><a href="/terms">Terms of Service</a></p>
<p><a href="/contact.html">Contact Us</a></p>
<p><a href="/discord-redirect.html">Join Discord</a></p>
<p><a href="https://github.com/ReviveMii/">GitHub</a></p>
<p><a href="https://www.youtube.com/@ReviveMii-Project">YouTube</a></p>
<p><a href="http://yt.old.errexe.xyz/?query=ReviveMii">ReviveMii on ReviveTube</a></p>
<p><a href="/cookies.html">Manage Cookies<p></a>
<p><a href="/wc.html">What Cookies do we use?</a></p>
<p onclick="startloading();"><a href="/privacy">Privacy Policy</a></p>
<p onclick="startloading();"><a href="/terms">Terms of Service</a></p>
<p onclick="startloading();"><a href="/contact.html">Contact Us</a></p>
<p onclick="startloading();"><a href="/discord-redirect.html">Join Discord</a></p>
<p onclick="startloading();"><a href="https://github.com/ReviveMii/">GitHub</a></p>
<p onclick="startloading();"><a href="https://www.youtube.com/@ReviveMii-Project">YouTube</a></p>
<p onclick="startloading();"><a href="http://yt.old.errexe.xyz/?query=ReviveMii">ReviveMii on ReviveTube</a></p>
<p onclick="startloading();"><a href="/cookies.html">Manage Cookies<p></a>
<p onclick="startloading();"><a href="/wc.html">What Cookies do we use?</a></p>
<!-- Not working
<a href="http://rss.errexe.xyz/blog/revivemii.xml" target="_blank" style="display: inline-flex; align-items: center; text-decoration: none; background-color: #0077cc; color: white; padding: 8px 12px; border-radius: 4px; font-size: 14px;">
<a onclick="startloading();" href="http://rss.errexe.xyz/blog/revivemii.xml" target="_blank" style="display: inline-flex; align-items: center; text-decoration: none; background-color: #0077cc; color: white; padding: 8px 12px; border-radius: 4px; font-size: 14px;">
<img src="/img/rss.png" alt="RSS" style="width: 16px; height: 16px; margin-right: 8px;">
Subscribe to RSS
</a>

View File

@ -8,17 +8,36 @@
<meta name="description" content="Services and Projects by the ReviveMii Project">
</head>
<body>
<header> <div class="logo-container">
<a href="index.html" class="logo" style="text-decoration: none">
<div id="loadicon" style="display:none; width:40px; height:40px; position:fixed;top:8px;left:8px; overflow:hidden;z-index:1050;" >
<script>
var loadingsfx = new Audio("15.wav");
function startloading() {
document.getElementById("loadicon").style.display="block";
setTimeout(stoploading,2000); // if page dont load past this point loader stops xD
loadingsfx.play();
loadingsfx.loop=true;
loadingsfx.currentTime = 0;
}
function stoploading() {
document.getElementById("loadicon").style.display="none";
loadingsfx.pause();
}
</script>
<img src="/wiiloading.gif" style="display:flex; width:40px; height:40px;" id="wiiring" alt="">
</div>
<header onload="stoploading();"> <div class="logo-container">
<a href="index.html" class="logo" onclick="startloading();" style="text-decoration: none">
<img src="favicon.ico" alt="ReviveMii Logo" class="logo-img" style="text-decoration: none">
<span>ReviveMii</span>
</a>
</div>
<nav>
<a href="index.html">Home</a>
<a href="projects.html">Projects</a>
<a href="about.html">About</a>
<a href="index.html" onclick="startloading();">Home</a>
<a href="projects.html" onclick="startloading();">Projects</a>
<a href="about.html" onclick="startloading();">About</a>
</nav>
</header>
<br>
<br>
@ -27,8 +46,9 @@
<br>
<section class="projects-hero">
<div class="container">
<h1>Our Featured Projects and Services</h1>
<p>ReviveMii Projects</p>
<h1 style="text-align:center;">Our Featured Projects and Services</h1>
<p style="text-align:center;">ReviveMii Projects</p>
<hr>
</div>
</section>
<div id="cookiePopup" style="position: fixed; bottom: 0; left: 0; right: 0; background-color: #333; color: white; padding: 15px; text-align: center; font-size: 16px; z-index: 1000; display: none;">
@ -46,24 +66,24 @@
document.getElementById('cookiePopup').style.display = 'none';
}
</script>
<section class="projects-list">
<section class="projects-list" style="margin-top:-80px;">
<div class="container">
<div class="project-card">
<img src="/revivetube.png" alt="ReviveTube">
<img src="/revivetube.png" alt="ReviveTube" style="height:240px;">
<div class="card-content">
<h3>ReviveTube</h3>
<p>Watch YouTube Videos on your Wii</p>
<a href="/revivetube" class="btn">Learn More</a>
<a href="/revivetube" onclick="startloading();" class="btn">Learn More</a>
</div>
</div>
<br>
<br>
<div class="project-card">
<img src="/imageshare.jpg" alt="imageshare">
<img src="/imageshare.jpg" alt="imageshare" style="height:240px;">
<div class="card-content">
<h3>ReviveMii Image Transfer</h3>
<p>Revival for the Nintendo Image Share Feature on 3ds and Wii U</p>
<a href="/imageshare" class="btn">Learn More</a>
<a href="/imageshare" onclick="startloading();" class="btn">Learn More</a>
</div>
</div>
<br>
@ -73,11 +93,11 @@
<footer>
<p>© 2025 ReviveMii</p>
<p><a href="/index.html#end">More Links in Home Footer</a><p>
<p><a href="contact.html">Contact Us</a></p>
<p><a href="/discord-redirect.html">Join Discord</a></p>
<p><a href="https://github.com/ReviveMii/">GitHub</a></p>
<p><a href="https://youtube.com/@ReviveMii-Project">YouTube</a></p>
<p onclick="startloading();"><a href="/index.html#end">More Links in Home Footer</a><p>
<p onclick="startloading();"><a href="contact.html">Contact Us</a></p>
<p onclick="startloading();"><a href="/discord-redirect.html">Join Discord</a></p>
<p onclick="startloading();"><a href="https://github.com/ReviveMii/">GitHub</a></p>
<p onclick="startloading();"><a href="https://youtube.com/@ReviveMii-Project">YouTube</a></p>
</footer>
</body>

View File

@ -7,18 +7,37 @@
<link rel="stylesheet" href="/css/1.css">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<meta name="description" content="Watch YouTube Videos on your Wii!">
<audio src="/revivetube/revivetubechannel.mp3" autoplay="" preload></audio>
</head>
<body>
<header>
<div id="loadicon" style="display:none; width:40px; height:40px; position:fixed;top:8px;left:8px; overflow:hidden;z-index:1050;" >
<script>
var loadingsfx = new Audio("/15.wav");
function startloading() {
document.getElementById("loadicon").style.display="block";
setTimeout(stoploading,2000); // if page dont load past this point loader stops xD
loadingsfx.play();
loadingsfx.loop=true;
loadingsfx.currentTime = 0;
}
function stoploading() {
document.getElementById("loadicon").style.display="none";
loadingsfx.pause();
}
</script>
<img src="/wiiloading.gif" style="display:flex; width:40px; height:40px;" id="wiiring" alt="">
</div>
<header onload="stoploading();">
<div class="logo-container">
<a href="/index.html" class="logo" style="text-decoration: none">
<a onclick="startloading();" href="/index.html" class="logo" style="text-decoration: none">
<img src="/favicon.ico" alt="ReviveMii Logo" class="logo-img" style="text-decoration: none">
<span>ReviveMii</span>
</a>
</div> <nav>
<a href="/index.html">Home</a>
<a href="/projects.html">Projects</a>
<a href="/about.html">About</a>
<a onclick="startloading();"href="/index.html">Home</a>
<a onclick="startloading();"href="/projects.html">Projects</a>
<a onclick="startloading();"href="/about.html">About</a>
</nav>
</header>
<br>
@ -30,27 +49,30 @@
This website uses cookies. <a href="/wc.html" style="color: blue; text-decoration: underline">What Cookies</a>
<button onclick="acceptCookies()" style="background-color: #4CAF50; color: white; border: none; padding: 10px 20px; cursor: pointer; font-size: 14px; margin-left: 20px;">Accept</button>
</div>
<section class="project-hero" id="p">
<section class="project-hero" id="p" style="margin-bottom:-34px; ">
<div class="container">
<h1>ReviveTube</h1>
<p>A Revival for the Youtube Website on the Wii</p>
<button class="cta" onclick="location.href='#p'">Learn More</button>
</div>
</section>
<section class="project-details">
<hr style=" position:relative; top:20px; width:95%; margin:auto;">
<section class="project-details" >
<div class="container">
<div class="project-description">
<h2>About the Project</h2>
<p>With ReviveTube you can watch YouTube Videos on your Wii. Without Homebrew! (If you have homebrew on your Wii, we recommend the Homebrew Service RiiTube by RiiConnect24/WiiLink, because it supports fullscreen, and ReviveTube supports no Full Screen at the time <a href="https://rc24.xyz/services/riitube" style="color: blue";>RiiTube (Old RC24) </a><a href="https://www.wiilink24.com/services/riitube/" style="color: blue">RiiTube (WiiLink</a>)</p>
<p>With ReviveTube you can watch YouTube Videos on your Wii. Without Homebrew! <br> (If you have homebrew on your Wii, we recommend the Homebrew Service RiiTube by RiiConnect24/WiiLink, because it supports fullscreen, and ReviveTube doesn't support fullscreen at this time) <br> <a href="https://rc24.xyz/services/riitube" target="_blank" onclick="startloading();" style="color: blue";>RiiTube (Old RC24) </a><br><a href="https://www.wiilink24.com/services/riitube/" style="color: blue" target="_blank" onclick="startloading();">RiiTube (WiiLink)</a></p>
</div>
<div class="project-features">
<h2>How to setup</h2>
<ul>
<p>Requirements</p>
<li>• Internet Channel Version: At least Ver. April 11, 2007 (Open the Wii Shop Channel to update)</li>
<li>• A Wii lol (Info for Dolphin Users: The Loading Screen for ReviveTube is not working on Dolphin, i don't know why)</li>
<li>• Internet Channel Version: At least Ver. April 11, 2007 </li>
<span style="color:#919191; font-size:14px;">(If you have previously bought the Internet Channel, Go to the Wii Shop Channel, Titles You've Downloaded, and find Internet Channel, then Download or Update it.)</span>
<li>• A Wii lol</li>
<span style="color:#919191; font-size:14px;">(Info for Dolphin Users: The Loading Screen for ReviveTube is not working on Dolphin, i don't know why)</span>
<li>• An Internet Connection</li>
<li>• Patience (The Internet Channel is slow)</li>
</ul><br>
@ -58,19 +80,20 @@
<li>• 1. Open the Internet Channel</li>
<li>• 2. Go to http://yt.old.errexe.xyz/ (with http://)</li>
<li>• 3. (Optional) Save to Bookmarks</li>
<li><strong>Warning: The Website will only search Videos, if you press "Go", "Okay" will not work</strong></li>
<li><strong style="color:#ff4a4a;">Warning: The Website will only search Videos, if you press "Go", "Okay" will not work</strong></li>
</ul>
<h1 style="color: green">Have fun with ReviveTube!</h1>
<hr style="margin-top:5px;">
<h1 style="color: green; text-align:center;">If you did it properly, Revivetubes website should show up. Have fun with ReviveTube!</h1>
</div>
</div>
</section>
<footer>
<p>© 2025 ReviveMii</p>
<p><a href="/index.html#end">More Links in Home Footer</a><p>
<p><a href="/contact.html">Contact Us</a></p>
<p><a href="/discord-redirect.html">Join Discord</a></p>
<p><a href="https://github.com/ReviveMii/">GitHub</a></p>
<p><a href="https://youtube.com/@ReviveMii-Project">YouTube</a></p>
<p onclick="startloading();"><a href="/index.html#end">More Links in Home Footer</a><p>
<p onclick="startloading();"><a href="/contact.html">Contact Us</a></p>
<p onclick="startloading();"><a href="/discord-redirect.html">Join Discord</a></p>
<p onclick="startloading();"><a href="https://github.com/ReviveMii/">GitHub</a></p>
<p onclick="startloading();"><a href="https://youtube.com/@ReviveMii-Project">YouTube</a></p>
</footer>
</body>

Binary file not shown.

BIN
wiiloading.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB