minimal-web-templates – Blame information for rev 5

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 <!DOCTYPE html>
2 <html>
3  
5 office 4 <head>
5 <meta charset="utf-8" />
6 <title>HTML5 Pacman</title>
1 office 7  
5 office 8 <style type="text/css">
9 #pacman {
10 height: 450px;
11 width: 342px;
12 margin: 20px auto
13 }
14 </style>
15 </head>
1 office 16  
5 office 17 <body>
18 <h1>HTML5 Pacman</h1>
1 office 19  
4 office 20 <!-- Load the pacman game into this container. -->
5 office 21 <div id="pacman"></div>
22  
23 <!-- Include pacman.js script. -->
24 <script src="pacman.js"></script>
25 <!-- Load the pacman game into the "pacman" container by ID. -->
26 <script>
27 PACMAN.init(document.getElementById("pacman"), "./");
28 </script>
29 </body>
30  
1 office 31 </html>