-
Notifications
You must be signed in to change notification settings - Fork 0
/
medical-records.html
54 lines (35 loc) · 1.03 KB
/
medical-records.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
44
45
46
47
48
49
50
51
52
53
54
<!--
For medical reports and other media
-->
<!DOCTYPE html>
<html>
<head>
<title>Medical Records</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0-rc.2/jquery.mobile-1.2.0-rc.2.min.css" />
<script src="http://code.jquery.com/jquery-1.8.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0-rc.2/jquery.mobile-1.2.0-rc.2.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>Medical Records</h1>
<a href="index.html" data-icon="home" data-direction="reverse">Home</a>
</div><!-- /header -->
<div data-role="content">
<ul data-role="listview" data-inset="true">
<li>Emergency</li>
<li>Allergies</li>
<li>Immunisations</li>
<li>Injuries</li>
<li>Mental Health</li>
<li>Family History</li>
</ul>
<ul data-role="listview" data-inset="true">
<li>X-Rays</li>
<li>Pictures</li>
</ul>
</div><!-- /content -->
</div><!-- /page -->
</body>
</html>