Files
flufflparty-/index.html
T
2023-03-26 18:41:37 +02:00

108 lines
3.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>IO Game Studios</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="navigationStyle.css">
<link rel="stylesheet" href="mainPage.css">
<link rel="stylesheet" href="Footerstyle.css">
</head>
<body onresize="hideMobileMenuBar()">
<header>
<img src="Logo.jpg" onclick="window.location.href='https://www.iogamestudios.de/index'" style="cursor: pointer">
<nav>
<!-- Desktop-->
<ul>
<li><a class="highlighted" href="https://www.iogamestudios.de/index">Home</a></li>
<li><a href="https://www.iogamestudios.de/games">Games</a></li>
<li><a href="https://www.iogamestudios.de/quicklinks">Quicklinks</a></li>
<li>About</li>
</ul>
<!--Mobile-->
<button onclick="showMobileMenuBar()" id="mobileMenuBarButton">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-list" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z"/>
</svg>
</button>
</nav>
</header>
<!--Mobile-->
<menu id="mobileMenuBar">
<div>
<ul>
<li class="highlighted" ><a href="https://www.iogamestudios.de/index">Home</a></li>
<li><a href="https://www.iogamestudios.de/games">Games</a></li>
<li><a href="https://www.iogamestudios.de/quicklinks">Quicklinks</a></li>
<li>About</li>
</ul>
</div>
</menu>
<!--Menu Ends here-->
<div class="contentArea">
<h1 style="color: #F7A4A4">Welcome to...</h1>
<img class="imageFull" src="Bannger.jpg">
<h1 style="color: #F7A4A4; margin-top: 50px">Short overview</h1>
<div class="mainPageCards">
<div class="color3">
<h2>We</h2>
<p>
Welcome to the new world of games. No Ads and totally free.
</p>
</div>
<div class="color1">
<h2>Data</h2>
<p>
We love your data just as you do. So we don't collect it. All of our game servers are hostet in germany.
</p>
</div>
<div class="color2">
<h2>Coming Soon</h2>
</div>
</div>
<button>Learn More</button>
<h1 style="color: #F7A4A4; margin-top: 50px">Have a look at our games page</h1>
<div class="mainPageCards">
<div class="flufflPartyCard">
<h2>FlufflParty</h2>
<p>
An online multiplayer party game to have fun with your friends. Cool minigames action and more.
</p>
</div>
<div class="color3">
<h2>Coming Soon</h2>
</div>
<div class="color2">
<h2>Coming Soon</h2>
</div>
</div>
<button onclick="window.location.href='https://www.iogamestudios.de/games'">Visit Games Page</button>
</div>
</body>
<footer>IOGameStudios 2023</footer>
<script src="StartPage.js"></script>
</html>