jQuery Mobile
(or anything of own choice under any directory). Inside it, create folders named assets, images, javascript, styles(recommended). <html>
tag.
[html]
<!-- jQuery CDN hosted files -->
<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.11.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>[/html]
OR
Add the downloaded(jquery.mobile-1.4.5) files(CSS to styles folder,.js folder) to javascript folder.(for offline)
Then add the following code to the page inside <html> tag.
[html]
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- jQuery local -->
<link rel="stylesheet" type="text/css" href="….\jquery.mobile-1.4.5">
<script type="text/javascript" src="….\jquery.mobile-1.4.5"></script>
<script type="text/javascript" src="….\jquery.mobile"></script>
</head>
[/html]