website/index.html

86 lines
3.6 KiB
HTML
Raw Permalink Normal View History

2024-09-01 23:58:40 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
2024-09-03 19:07:11 +02:00
<meta name="viewport" content="width=device-width">
2024-09-01 23:58:40 +02:00
<title>Bloub Bloub Studio</title>
<link rel="stylesheet" href="/style.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';
2024-09-03 14:24:17 +02:00
img.src = '/assets/menu-close.png';
2024-09-03 14:14:47 +02:00
} else {
menu.style.display = 'none';
2024-09-03 14:24:17 +02:00
img.src = '/assets/menu-burger.png';
2024-09-03 14:14:47 +02:00
}
}
</script>
2024-09-01 23:58:40 +02:00
<h1>Bloub Bloub Studio</h1>
<nav>
2024-09-03 14:24:17 +02:00
<img src="/assets/menu-burger.png" alt="menu icon" onclick="menu_toggle()" />
2024-09-03 14:14:47 +02:00
<menu>
<a href="/">
2024-10-17 08:27:22 +02:00
<img src="/assets/discord-logo.png" alt="discord" />
<h3>DISCORD</h3>
2024-09-03 14:14:47 +02:00
</a>
<a href="/">
2024-09-03 14:24:17 +02:00
<img src="/assets/steam-logo.png" alt="steam" />
2024-09-03 14:14:47 +02:00
<h3>STEAM</h3>
</a>
2024-10-17 08:27:22 +02:00
<!--
2024-09-03 14:14:47 +02:00
<a href="/">
2024-09-03 14:24:17 +02:00
<img src="/assets/youtube-logo.png" alt="youtube" />
2024-09-03 14:14:47 +02:00
<h3>YOUTUBE</h3>
</a>
2024-10-17 08:27:22 +02:00
-->
2024-09-03 14:14:47 +02:00
<a href="/">
2024-09-03 14:24:17 +02:00
<img src="/assets/email-logo.png" alt="email us" />
2024-09-03 14:14:47 +02:00
<h3>EMAIL US</h3>
</a>
<a href="/">
2024-09-03 14:24:17 +02:00
<img src="/assets/press-kit-logo.png" alt="press kit" />
2024-09-03 14:14:47 +02:00
<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">
2024-09-03 14:24:17 +02:00
<img src="/assets/miniature/miniature.png" alt="GAME 0" />
<video class="game-video" autoplay loop muted poster="/assets/miniature/miniature.png">
<source src="/assets/trailer/trailer.mp4" type="video/mp4">
2024-09-01 23:58:40 +02:00
</video>
</a>
2024-09-04 09:01:58 +02:00
<a href="/game-template" class="game">
2024-09-03 14:24:17 +02:00
<img src="/assets/miniature/miniature.png" alt="GAME 1" />
<video class="game-video" autoplay loop muted poster="/assets/miniature/miniature.png">
<source src="/assets/trailer/trailer.mp4" type="video/mp4">
2024-09-01 23:58:40 +02:00
</video>
</a>
<a href="/game2.html" class="game">
2024-09-03 14:24:17 +02:00
<img src="/assets/miniature/miniature.png" alt="GAME 2" />
<video class="game-video" autoplay loop muted poster="/assets/miniature/miniature.png">
<source src="/assets/trailer/trailer.mp4" type="video/mp4">
2024-09-01 23:58:40 +02:00
</video>
</a>
<a href="/game3.html" class="game">
2024-09-03 14:24:17 +02:00
<img src="/assets/miniature/miniature.png" alt="GAME 3" />
<video class="game-video" autoplay loop muted poster="/assets/miniature/miniature.png">
<source src="/assets/trailer/trailer.mp4" type="video/mp4">
2024-09-01 23:58:40 +02:00
</video>
</a>
<a href="/game4.html" class="game">
2024-09-03 14:24:17 +02:00
<img src="/assets/miniature/miniature.png" alt="GAME 4" />
<video class="game-video" autoplay loop muted poster="/assets/miniature/miniature.png">
<source src="/assets/trailer/trailer.mp4" type="video/mp4">
2024-09-01 23:58:40 +02:00
</video>
</a>
</main>
</body>
</html>