minimal-web-templates – Blame information for rev 4

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