-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
62 lines (56 loc) · 1.4 KB
/
index.php
File metadata and controls
62 lines (56 loc) · 1.4 KB
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
<html>
<head>
<title>Index</title>
<style>
body{
background-color:aqua;
}
li{
}
.vertical-menu {
width: 55%;
font-size:3rem;
text-align:center;
margin-left:25%;
border:1rem solid white;
border-radius:5%;
}
.vertical-menu a {
background-color: #eee;
color: black;
display: block;
padding: 8%;
text-decoration: none;
}
.vertical-menu a:hover {
background-color: #ccc;
}
.vertical-menu a.active {
background-color: blue;
color: white;
font-size:4rem;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#whiteBg").hide();
$("#whiteBg").fadeIn(2500);
$("#welcomeSign").hide();
$("#welcomeSign").fadeIn(1200);
});
</script>
</head>
<body>
<div style="font-size:8.5rem; color:white; margin-top:5%; text-align:center; text-shadow:0 0 18px blue, 0 0 15px blue, 0 0 10px blue "><b><i>Think Fit !!!</i></b></div>
<div style="margin-top:20%" id="welcomeSign">
<p style="text-align:center; color:blue; text-shadow:0 0 18px white, 0 0 15px white, 0 0 10px white; font-size:5rem "><b>.....Welcome.....</b></p>
<div id="whiteBg" class="vertical-menu" >
<a href="#" class="active"><b>Are you a ?</b></a>
<a href="patientlogin.php">Patient</a>
<a href="doctorlogin.php">Doctor</a>
<a href="adminlogin.php">Admin</a>
</div>
</div>
</body>
</html>