I'm having trouble linking the style sheet from my theme created on Theme Roller. I added the links to my HTML code, but the theme isn't loading properly. I've selected Theme A, so I don't think that's the issue. Any assistance would be greatly appreciated.
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Games</title>
<link rel="stylesheet" href="themes/mobileapp.min.css" />
<link rel="stylesheet" href="themes/jquery.mobile.icons.min.css" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile.structure-1.4.5.min.css"/>
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<!-- Homepage -->
<div data-role="page" id="home" data-theme="a">
<div data-role="header" data-theme="a">
<h1>Games</h1>
</div>
<div role="main" class="ui-content">
<ul data-role="listview" data-inset="true">
<li><a href="#search">Search</a></li>
<li><a href="#games">Games</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#where">Where we Are</a></li>
</ul>
</div>
</div>
</body>
</html>