-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar.html
54 lines (46 loc) · 932 Bytes
/
sidebar.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
<html>
<style type="text/css">
body{
margin:0px;
padding:0px;
background-color: white;
}
li{
font-size: 20px;
margin: 10px;
}
.header{
width: 100%;
height: 150px;
background-color: transparent;
}
a{
text-decoration: none;
color: #55acee;
}
li{
list-style-type: none;
padding: 10px 0px;
color: #55acee;
}
.style{
margin: 40px 10px;
}
ul{
width: 200px;
}
</style>
<base target="content">
<div class="header" >
<center><img src="img/logo.png" width="100" height="100" style="margin:20px;" /></center>
</div>
<ul class="style">
<li><a href="index.html" target="_top">Home</a></li>
<li><a href="doctor.html">Find Doctor</a></li>
<li><a href="hospital.html">Find Hospital</a></li>
<li><a href="fitcenter.html">Find FitCenter</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="signup.html">Sign Up</a></li>
<li><a href="About.html">About</a></li>
</ul>
</html>