DOM-based game for TOP-Jam 1
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<!DOCTYPE HTML>
|
|
|
|
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>Chordia</title>
|
|
|
|
<link rel="stylesheet" href="main.css">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div id="topBar" class="hBar">
|
|
|
|
top bar things go here
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="centerRow">
|
|
|
|
<div id="leftBar" class="vBar">
|
|
|
|
<button>@</button>
|
|
|
|
<button>&</button>
|
|
|
|
<button>!</button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<gamewindow id="test-target">
|
|
|
|
<player id="player"></player>
|
|
|
|
</gamewindow>
|
|
|
|
|
|
|
|
<div id="rightBar" class="vBar">
|
|
|
|
<button>#</button>
|
|
|
|
<button>$</button>
|
|
|
|
<button>%</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="botBar" class="hBar">
|
|
|
|
<a href="https://git.andrewzah.com/dolsen/chordia/" target="_blank">© 2021 chordia.io</a>
|
|
|
|
<a href="https://itch.io/jam/top-jam-1" target="_blank">TOP Jam-1</a>
|
|
|
|
<a href="about.html">About</a>
|
|
|
|
<a href="index.html" class="currentPage">Chordia</a>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
<script src="game.js"></script>
|
|
|
|
</html>
|