forked from leecrossley/Mobile-Starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (34 loc) · 1.25 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width" />
<title>Mobile Starter</title>
<link rel="stylesheet" href="assets/css/nicem.css" media="screen" />
<link rel="stylesheet" href="assets/css/jqm.css" media="screen" />
<script type="text/javascript" src="assets/js/jquery.js" charset="utf-8"></script>
<script type="text/javascript" src="assets/js/jqm.js" charset="utf-8"></script>
<script type="text/javascript" src="assets/js/nicem.js" charset="utf-8"></script>
</head>
<body>
<div data-role="page" id="app-template" data-theme="a">
<div data-role="header" data-position="fixed">
<h1>NHS Evidence - Mobile</h1>
</div><!-- /header -->
<div data-role="content">
<div data-role="fieldcontain">
<label for="search">Search Input:</label>
<input type="search" name="password" id="search" value="" />
<p>
<a href="#" data-role="button" id="searchbutton">Search</a>
</p>
</div>
<ul data-role="listview" class="ui-listview" id="searchresults">
</ul>
<p> </p>
</div><!-- /content -->
<div data-role="footer" data-position="fixed">
<h2>(c) 2011 NICE</h2>
</div><!-- /footer -->
</div><!-- /page -->
</body>
</html>