minimal-web-templates – Blame information for rev 2

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">
8 #pacman {
9 height:450px;
10 width:342px;
11 margin:20px auto;
12 }
13 </style>
1 office 14  
2 office 15 </head>
1 office 16  
2 office 17 <body>
18 <h1>HTML5 Pacman</h1>
1 office 19  
2 office 20 <div id="pacman"></div>
21  
22 <script src="pacman.js"></script>
23 <script>
24 PACMAN.init(document.getElementById("pacman"), "./");
25 </script>
26 </body>
1 office 27 </html>