Files
flufflparty-/index.html
T
2023-03-25 22:46:02 +01:00

57 lines
1.5 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">
</head>
<body>
<header>
<button>IO Game Studios</button>
<nav>
<!-- Desktop-->
<ul>
<li class="menuDropdownDesktop">
Games
<div>
<ul>
<li><button>FlufflParty</button></li>
<li><button>Other</button></li>
</ul>
</div>
</li>
<li>Quicklinks</li>
<li>About</li>
</ul>
<!--Mobile-->
<button onclick="showMobileMenuBar()">
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-three-dots" viewBox="0 0 16 16">
<path d="M3 9.5a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm5 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3zm5 0a1.5 1.5 0 1 1 0-3 1.5 1.5 0 0 1 0 3z"/>
</svg>
</button>
</nav>
</header>
<menu id="mobileMenuBar">
<div>
<ul>
<li>Games</li>
<li>Quicklinks</li>
<li>About</li>
</ul>
</div>
</menu>
</body>
<script src="StartPage.js"></script>
</html>