-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoctor3.htm
102 lines (98 loc) · 2.03 KB
/
doctor3.htm
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?php
session_start();
$con=mysqli_connect("localhost","root","");
if(!$con)
die("could not connect".mysqli_error());
?>
<!DOCTYPE html>
<html>
<head>
<style>
body:before{
height:100%;
width:100%;
background-image:url("https://www.bhatiahospital.org/storage/app/public/home_banner/1/image/1503414524again-revised-bhatia-homebanner-01.jpg");
background-size:cover;
content:"";
position:fixed;
top:0;
left:0;
z-index:-100;
filter: blur(5px);
-webkit-filter: blur(5px);
}
ul li{
width:220px;
height:50px;
font-size:25px;
border-width:2px;
line-height:50px;
text-align:center;
border-radius:10px;
background:linear-gradient(#252d80,#313e78);
color:white;
list-style:none;
float:left;
margin-right:10px;
}
ul li a{
text-decoration:none;
color:white;
font-family:Times New Roman;
}
ul li a:hover{
background-color:#3e558a;
display:block;
}
ul li ul {
list-style:none;
display:none;
background-color:green;
}
ul li ul li{
font-size:20px;
display:block;
border-radius:10px;
height:50px;
line-height:50px;
padding:10px 0 10px 0 ;
border:1px solid white;
margin-left:-39px;
}
ul li:hover ul{
display:block;
}
</style>
</head>
<body>
<ul>
<li><a href=file:///C:/Users/Veenu/Desktop/projectdatabase.htm>HOME</a></li>
<li><a href=#about>ABOUT US</a>
<ul>
<li><a href=file:///C:/Users/Veenu/Downloads/eg2.html>Introduction</a></li>
<li><a href=#rules>Rules & Regulation</a></li>
<li><a href=#staff>Staff info</a></li>
</ul>
</li>
<li><a href=#departments>DEPARTMENTS</a>
<ul>
<li><a href=#skin>Skin</a></li>
<li><a href=#orthipaedic>orthopaedic</a></li>
<li><a href=#surgery>Surgery</a></li>
<li><a href=#cardiology>cardiology</a></li>
<li><a href=#radiology>Radiology</a></li>
</li>
</ul>
<li><a href=#aapointment>APPOINTMENT</a>
</li>
<li><a href=#events>EVENTS</a>
<ul>
<li><a href=#conference>Conference </a></li>
<li><a href=file:///C:/Users/Veenu/Downloads/events.html>Upcoming Events</a></li>
</ul>
</li>
<li><a href=file:///C:/Users/Veenu/Downloads/contact.html>CONTACT US</a></li>
<li><a href=file:///C:/Users/Veenu/Desktop/emergency.htm>EMERGENCY</a></li>
</ul>
</body>
</html>