-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmedSummary.html
54 lines (45 loc) · 1.05 KB
/
medSummary.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
<!DOCTYPE html>
<html>
<head>
<title>Medical Summary</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="jquery.mobile-1.3.1.min.css" />
<script src="jquery-2.0.0.min.js"></script>
<script src="jquery.mobile-1.3.1.min.js"></script>
<script>
</script>
</head>
<body>
<!--Homepage-->
<div data-role="page" id="home">
<div data-role="header" >
<h1>Medical Summary</h1>
<a href="index.html" data-icon="home" data-iconpos="notext" rel="external">Home</a>
</div> <!-- /header -->
<div data-role="content">
Age and description: 28 year old brown male<br>
<br>
Chief complaint: "My gums hurt"<br>
<br>
Past Medical History:<br>
- Some history<br>
- Some more history<br>
<br>
Present Medical Conditions:<br>
- Obesity<br>
- Hypertension<br>
<br>
Medications:<br>
- Lipinosil<br>
- Vitamins<br>
<br>
Allergies:<br>
- Dust mites<br>
- Cat and Dogs<br>
<br>
Hx Tx at TUSDM: Starting in 2012<br>
</div><!-- / home content -->
</div><!-- /home page -->
</body>
</html>