minimal-web-templates – Rev 4

Subversion Repositories:
Rev:
<!DOCTYPE html>
<html>
        <head>
        <meta charset="utf-8" />
        <title>HTML5 Pacman</title>

        <style type="text/css">
        #pacman {
                height: 450px;
                width: 342px;
                margin: 20px auto
        }
        </style>

        </head>

        <body>
                <h1>HTML5 Pacman</h1>

        <!-- Load the pacman game into this container. -->
                <div id="pacman"></div>
                
                <!-- Include pacman.js script. -->
                <script src="pacman.js"></script>
                <!-- Load the pacman game into the "pacman" container by ID. -->
                <script>
                        PACMAN.init(document.getElementById("pacman"), "./");
                </script>
        </body>
</html>