summaryrefslogtreecommitdiff
path: root/free.html
blob: 9c101695fed92ee9e2d007bb0ced8eb4eb1916d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<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 class='top_pad_free'></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_free' onclick='dice.render_dice()'>Roll!</button>
        </span>

        <h2>Scoreboard</h2>
        <div id='full_scoreboard'></div>
    </body>

    <script type="text/javascript" src="free.js"></script>
</html>