Skip to content

Commit

Permalink
Initial commit of Gehntris.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheFloydman committed Jul 10, 2024
1 parent 0868f49 commit 33573a4
Show file tree
Hide file tree
Showing 6 changed files with 1,015 additions and 0 deletions.
38 changes: 38 additions & 0 deletions gehntris/index.htm
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <!--<![endif]-->
<html>

<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Gehntris</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>

<body onload="onBodyLoad();">
<!--[if lt IE 7]>
<div class="browsehappy">You are using an <strong>outdated</strong> browser. Please upgrade your browser to improve your experience.</div>
<![endif]-->
<div id="main-container">
<div id="svg-container">
<div>
<svg id="svg-main"></svg>
<div id="below">
<button id="pause-button" onclick="togglePause();">Pause</button>
</div>
</div>
<div id="info-container">
<div id="upcoming">Upcoming</div>
<div><svg id="svg-info"></svg></div>
</div>
</div>
</div>
</body>

</html>
Loading

0 comments on commit 33573a4

Please sign in to comment.