Files
main-website/index.php
T
2023-12-18 21:02:50 +01:00

137 lines
3.4 KiB
PHP

<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Noto Sans', sans-serif;
background-color: #333;
color: #fff;
}
.container {
width: 80%;
margin: auto;
border: 2px solid #2ecc71;
border-radius: 25px;
padding: 20px;
background-color: #444;
}
.nav a {
text-decoration: none;
color: #fff;
padding: 10px 20px;
border: 2px solid #2ecc71;
border-radius: 25px;
background-color: #333;
transition: all 0.3s ease-in-out;
}
.nav a:hover {
background-color: #2ecc71;
color: #333;
cursor: pointer;
transition: all 0.3s ease-in-out;
}
.video-container {
width: 80%;
margin: 20px auto;
border: 2px solid #2ecc71;
border-radius: 25px;
overflow: hidden;
padding-bottom: 56.25%;
position: relative;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
header {
text-align: left;
}
.logo {
height: 60px;
width: 60px;
display: inline-block;
vertical-align: middle;
margin-right: 10px;
}
.title {
display: inline-block;
font-size: 48px;
line-height: 60px;
vertical-align: middle;
}
div.footer {
width: 80%;
margin: auto;
border: 2px solid #2ecc71;
border-radius: 25px;
padding: 20px;
background-color: #444;
display: flex;
justify-content: center;
align-items: center;
}
</style>
<title>WhyKorp</title>
</head>
<body>
<div class="container">
<header>
<a href="https://www.youtube.com/@whykioh" target="_blank">
<img class="logo" src="img/logo.png" alt="Logo">
</a>
<h1 class="title">WhyKorp</h1>
</header>
<style>
header {
opacity: 0;
transition: opacity 1s;
}
.show {
opacity: 1;
}
</style>
<script>
window.addEventListener("load", function() {
document.querySelector("header").classList.add("show");
});
</script>
<div class="nav">
<a href="#">Accueil</a>
<a href="#">Infos</a>
<a href="https://artists.magroove.com/en/lt/whykioh/" target="_blank">Link Tree</a>
<a href="tools/index.html">Outils</a>
<a href="ruty/index.php">Ruty</a>
<a href="lolivator/index.php">LoLivator</a>
<a href="snt/index.html">SNT</a>
<a href="archives/index.php">Archives</a>
</div>
<p><br></p>
<hr>
<h1>Bienvenue sur le site officiel de la WhyKorp !</h1>
<p>Vous y trouverez tout sur Whykioh aka Noah, et la WhyKorp.<br>Attention ! Site en cours de développement !<br>Si un disfonctionnement est trouvé veuillez le signaler.</p>
<hr>
<h1>Flash Info !</h1>
<div class="flash_info">
<p class="flash_info">Noah a enfin terminé l'EP 4 Elements, <br>il sera disponible sur toutes les plateformes <br>le 25 Décembre 2023</p>
<img class="flash_info" width="128px" src="img/last_cover.png">
</div>
<hr>
<h1>Voici la dernière vidéo de <a href="https://www.youtube.com/@whykioh">Whykioh</a> :</h1>
<div class="video-container">
<iframe width="560" height="315" src="https://www.youtube.com/embed/cqFXFAbXXOo?si=V2fgt9eyroo8sK6C" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
</div>
<div class="footer">
Copyright | Whykorp® 2021-2024
</div>
</body>
</html>