summaryrefslogtreecommitdiff
path: root/game.html
diff options
context:
space:
mode:
authorlouie <lshprung@yahoo.com>2020-09-20 09:26:58 -0700
committerlouie <lshprung@yahoo.com>2020-09-20 09:26:58 -0700
commita8c0d5619ee6d518737628d6c585233d0bba23da (patch)
tree30c13cf2439700c78d51acc9b430cb5fa092f963 /game.html
First commit
Diffstat (limited to 'game.html')
-rw-r--r--game.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/game.html b/game.html
new file mode 100644
index 0000000..5a54cee
--- /dev/null
+++ b/game.html
@@ -0,0 +1,26 @@
+<html>
+ <head>
+ <title>Yahtzee</title>
+ <link rel="stylesheet" href="yahtzee.css">
+ </head>
+
+ <body>
+ <a href='mode_select.html'><span class='back'>&lt Go Back</span></a>
+ <h1 class='shifted_head'></h1> <!-- head inserted via make_head() -->
+
+ <div id='notice'></div>
+
+ <div class='top_pad'></div>
+ <div class=dice_display></div> <!-- dice inserted via dice.render_dice() -->
+ <span id='submit_line'>
+ <span id='roll_count'></span> <!-- roll# inserted via js innerHTML -->
+ <button id='roll_display' onclick='dice.render_dice()'>Roll!</button>
+ <button id='submit' onclick='dice.submit_round();dice.render_dice();'>Submit</button> <!-- functions via dice.submit_round-->
+ </span>
+
+ <h2>Scoreboard</h2>
+ <div id='full_scoreboard'></div>
+ </body>
+
+ <script type="text/javascript" src="fo.js"></script>
+</html> \ No newline at end of file