Basic page template does not work

Basic page template does not work

Hi,

i would like to test the "Basic single page template" from here: http://demos.jquerymobile.com/1.4.5/pages/

I changed the [version] into 1.4.5:
  1. <!DOCTYPE html>
    <html>
    <head>
    	<title>Page Title</title>
    
    	<meta name="viewport" content="width=device-width, initial-scale=1">
    
    	<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
    	<script src="http://code.jquery.com/jquery-1.4.5.min.js"></script>
    	<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
    </head>
    <body>
    
    <div data-role="page">
    
    	<div data-role="header">
    		<h1>Page Title</h1>
    	</div><!-- /header -->
    
    	<div role="main" class="ui-content">
    		<p>Page content goes here.</p>
    	</div><!-- /content -->
    
    	<div data-role="footer">
    		<h4>Page Footer</h4>
    	</div><!-- /footer -->
    </div><!-- /page -->
    
    </body>
    </html>
But it looks like all the js/css is ignored because my template looks like this in the browser:



Any ideas? Many thanks!