-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
73 lines (46 loc) · 1006 Bytes
/
home.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
66
67
68
69
70
71
72
73
<html>
<head>
<style>
.btn{
border-radius: 100%;
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 20px;
text-align: center;
width:20%;
height:20%;
cursor:pointer;
box-shadow:0 9px #999;
margin:50 90 50 50;
}
.btn:hover{
background-color:red;
box-shadow:0 5x #666;
transform: translateY(4px);
}
.btn:active{
box-shadow:0 5x #666;
transform: translateY(4px);
}
.header{
background-color:powderblue;
font-size:30px;
height:40px;
margin-bottom:10;
}
</style>
</head>
<body>
<div class="header">
<center><p>PORTABLE ECG MONITORING</p></center>
</div>
<div class="main">
<button class="btn" onclick="window.open('homepage.html','_self')">VIEW USERS</button>
<button class="btn" onclick="window.open('fetchall.php','_self')">VIEW DOCTORS</button>
<button class="btn" onclick="window.open('adddoc.php','_self')">ADD DOCTOR</button>
<button class="btn">ADD DOCTOR</button>
<button class="btn">ADD DOCTOR</button>
</div>
</body>
</html>