website/index.html

128 lines
5.3 KiB
HTML
Raw Normal View History

2024-09-01 23:58:40 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bloub Bloub Studio</title>
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="/game.css">
<link rel="icon" href="/favicon.ico" type="image/x-icon">
</head>
<body>
2024-09-03 14:14:47 +02:00
<script>
function menu_toggle() {
var menu = document.getElementsByTagName('menu')[0];
var img = document.querySelector('nav > img');
if (menu.style.display == 'none') {
menu.style.display = 'block';
img.src = '/menu-close.png';
} else {
menu.style.display = 'none';
img.src = '/menu-burger.png';
}
}
</script>
2024-09-01 23:58:40 +02:00
<h1>Bloub Bloub Studio</h1>
<nav>
2024-09-03 14:14:47 +02:00
<img src="/menu-burger.png" alt="menu icon" onclick="menu_toggle()" />
<menu>
<a href="/">
<img src="/forum-logo.svg" alt="forum" />
<h3>FORUM</h3>
</a>
<a href="/">
<img src="/steam-logo.png" alt="steam" />
<h3>STEAM</h3>
</a>
<a href="/">
<img src="/youtube-logo.png" alt="youtube" />
<h3>YOUTUBE</h3>
</a>
<a href="/">
<img src="/twitter-logo.png" alt="twitter" />
<h3>TWITTER</h3>
</a>
<a href="/">
<img src="/email-logo.png" alt="email us" />
<h3>EMAIL US</h3>
</a>
<a href="/">
<img src="/mailing-list-logo.png" alt="mailing list" />
<h3>MAILING LIST</h3>
</a>
<a href="/">
<img src="/press-kit-logo.png" alt="press kit" />
<h3>PRESS KIT</h3>
</a>
</menu>
2024-09-03 09:54:18 +02:00
</nav>
2024-09-01 23:58:40 +02:00
<main class="games">
<a href="/game0.html" class="game">
<img src="/miniature.png" alt="GAME 0" />
<video class="game-video" autoplay loop muted poster="/miniature.png">
<source src="/trailer.mp4" type="video/mp4">
</video>
</a>
<a href="/game1.html" class="game">
<img src="/miniature.png" alt="GAME 1" />
<video class="game-video" autoplay loop muted poster="/miniature.png">
<source src="/trailer.mp4" type="video/mp4">
</video>
</a>
<a href="/game2.html" class="game">
<img src="/miniature.png" alt="GAME 2" />
<video class="game-video" autoplay loop muted poster="/miniature.png">
<source src="/trailer.mp4" type="video/mp4">
</video>
</a>
<a href="/game3.html" class="game">
<img src="/miniature.png" alt="GAME 3" />
<video class="game-video" autoplay loop muted poster="/miniature.png">
<source src="/trailer.mp4" type="video/mp4">
</video>
</a>
<a href="/game4.html" class="game">
<img src="/miniature.png" alt="GAME 4" />
<video class="game-video" autoplay loop muted poster="/miniature.png">
<source src="/trailer.mp4" type="video/mp4">
</video>
</a>
<a href="/game5.html" class="game">
<img src="/miniature.png" alt="GAME 5" />
<video class="game-video" autoplay loop muted poster="/miniature.png">
<source src="/trailer.mp4" type="video/mp4">
</video>
</a>
<a href="/game6.html" class="game">
<img src="/miniature.png" alt="GAME 6" />
<video class="game-video" autoplay loop muted poster="/miniature.png">
<source src="/trailer.mp4" type="video/mp4">
</video>
</a>
<a href="/game7.html" class="game">
<img src="/miniature.png" alt="GAME 7" />
<video class="game-video" autoplay loop muted poster="/miniature.png">
<source src="/trailer.mp4" type="video/mp4">
</video>
</a>
<a href="/game8.html" class="game">
<img src="/miniature.png" alt="GAME 8" />
<video class="game-video" autoplay loop muted poster="/miniature.png">
<source src="/trailer.mp4" type="video/mp4">
</video>
</a>
<a href="/game9.html" class="game">
<img src="/miniature.png" alt="GAME 9" />
<video class="game-video" autoplay loop muted poster="/miniature.png">
<source src="/trailer.mp4" type="video/mp4">
</video>
</a>
</main>
2024-09-03 09:54:18 +02:00
<!--
2024-09-01 23:58:40 +02:00
<div id="notif">
<img id="notif-close" src="close.svg" alt="close button" onclick="document.getElementById('notif').style.display = 'none'" />
<a href="/game0.html">BUY OUR LAST GAME NOW!</a>
</div>
2024-09-03 09:54:18 +02:00
-->
2024-09-01 23:58:40 +02:00
</body>
</html>