-
Notifications
You must be signed in to change notification settings - Fork 0
/
medication.html
46 lines (46 loc) · 2.23 KB
/
medication.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
<!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>
<h1 class="titleMedication">Medication</h1>
<script src="includes/js/medication.js"></script>
</body>
</html>