mirror of
https://github.com/ReviveMii/website
synced 2025-09-02 19:41:05 +02:00
add credits
This commit is contained in:
parent
eacccffe6d
commit
379b36baa1
82
credits.html
Normal file
82
credits.html
Normal file
@ -0,0 +1,82 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>About Us | ReviveMii</title>
|
||||
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
||||
<link rel="stylesheet" href="css/1.css">
|
||||
<meta name="description" content="About Page for the ReviveMii Project.">
|
||||
</head>
|
||||
<body>
|
||||
<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 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 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>
|
||||
<br>
|
||||
<br>
|
||||
<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>
|
||||
<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>
|
||||
|
||||
<script>
|
||||
if (!localStorage.getItem('cookiesAccepted')) {
|
||||
document.getElementById('cookiePopup').style.display = 'block';
|
||||
}
|
||||
|
||||
function acceptCookies() {
|
||||
localStorage.setItem('cookiesAccepted', 'true');
|
||||
document.getElementById('cookiePopup').style.display = 'none';
|
||||
}
|
||||
</script>
|
||||
<section class="about">
|
||||
<div class="container">
|
||||
<h1 onclick="startloading();">Website Credits</h1>
|
||||
<p>Thanks to Chrisplayz for the Sounds and the Loading.</p>
|
||||
<br>
|
||||
<br>
|
||||
<br>
|
||||
<a href="/" onclick="startloading();" class="cta">Go Back</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<footer>
|
||||
<p>© 2025 ReviveMii</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>
|
Loading…
x
Reference in New Issue
Block a user