-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacamol.html
65 lines (63 loc) · 3.07 KB
/
acamol.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
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script
src="https://code.jquery.com/jquery-3.2.1.slim.js"
integrity="sha256-tA8y0XqiwnpwmOIl3SGAcFl2RvxHjA8qp0+1uCGmRmg="
crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="includes/css/style.css">
<title>SelfCare</title>
</head>
<body id="wrapper">
<header id="head">
<nav class="navbar navbar-dark">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbar">
<span class="navbar-toggler-icon"></span>
</button>
<a href="profile.html"><section class="logo"></section></a>
<i class="fa fa-universal-access fa-2x float-right" aria-hidden="true"></i>
<div class="navbar-collapse collapse" id="navbar">
<a class="navbar-brand" href="profile.html"><img src="images/profilepic.jpg" width="100px"> David Polisanov</a>
<a class="profileSettings"href="profileSettings.html"><i class="fa fa-cog fa-spin fa-2x fa-fw" aria-hidden="true"></i></a>
<ul class="navbar-nav mr-auto mt-2 mt-lg-0">
<li class="nav-item">
<a class="nav-link" href="medication.html">Medication</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Appointment</a>
</li>
<li class="nav-item" >
<a class="nav-link" href="#">Notification</a>
</li>
</ul>
</div>
</nav>
</header>
<section class="titleMedicine">
<span class="circleBlue"></span>
Acamol
</section>
<section class="drugMedicine">
Paracetamol 500mg<br>
<span class="textRed">Expiry Date: 13/01/18</span>
</section>
<section class="instructionMedicine">
<span class="sectionMedicine">Dosage:</span>
<div class="boxDosageMedicine">
<p class="contentBoxDosage">3-4 x 7 days</p>
</div>
<p class="sectionMedicine">Instruction:</p>
<section class="instructionBox">
<p class="textInstruction">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </p>
</section>
<a class="prescription" href="#"><i class="fa fa-file-pdf-o fa-2 logoPdf" aria-hidden="true"></i> Prescription</a>
</section>
</body>
</html>