-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathroot.html
More file actions
23 lines (20 loc) · 730 Bytes
/
root.html
File metadata and controls
23 lines (20 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<!-- From: https://stackoverflow.com/questions/11978231/vertically-center-two-elements-within-a-div/31977476#31977476-->
<!--<style></style>-->
<link rel="stylesheet" href="root.css">
</head>
<body>
<!-- Using javascript injections instead of separate HTML pages since this is supposed to be a game. -->
<div id = "Interface"></div>
<div id = "Game">
<div id = "GameInterface"></div>
<div id = "GameTable"></div>
<div id = "GameInterface2"></div>
</div>
<div class = "footer">Please <a href="https://alexandercaichen.github.io/" style="color:#157815">click here</a> for the code and ReadMe!</div>
<!-- <div id="tableTest"></div> -->
<script src="root.js"></script>
</body>
</html>