-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbookappoint.html
154 lines (130 loc) · 3.29 KB
/
bookappoint.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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<html lang="en">
<style>
/* #first{
display:flex;
} */
#main{
height:100%;
width:100%;
background-color:rgb(223, 230, 219);
/* margin:center; */
}
#first{
background-color:white;
margin:auto;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
height:45%;
width:70%;
background-color:#F7F8F5;
padding-bottom:60px;
border-radius:10px 10px
}
#second{
background-color:white;
height:90%;
width:90%;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
margin:center;
border-radius:10px;
margin-left:50px;
}
#class{
display:flex;
border-radius:10px;
margin-left:50px;
text-align:center;
padding-bottom:-20px;
}
#first> p{
padding-left:50px;
font-family: IBM Plex Sans,sans-serif;
color: #1C4659;
font-size: 18px;
font-weight: 500;
padding-top:20px;
font-weight:bold;
}
#class>h4{
padding-left:70%;
font-size:20px;
font-family: IBM Plex Sans,sans-serif;
}
#class>p{
padding-left:20px;
padding-top:13px;
}
#small{
height:100px;;
width:300px;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
border-radius:10px;
margin-left:340px;
margin-top:50px;
}
#small>div{
display:flex;
}
#sun{
margin-top:-50px;
/* margin-left: -50px; */
}
#sun>h3>img{
height:40px;
width:40px;
padding-left:20px;
margin-top:10px;
}
#sun>h3{
font-family: IBM Plex Sans,sans-serif;
font-size:13px;
padding-left:15px;
padding-top:15px;
margin-top:4px;
font-size:15px;
font-family: IBM Plex Sans,sans-serif;
color: #02475b;
}
button{
background-color:#FCB716;
margin-left:5%;
padding:9px 9px 9px 9px;
border-radius:7px;
width:60%;
/* margin:auto; */
Color:white;
font-weight:bold;
margin-top:-2px;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
border:0px;
font-family: IBM Plex Sans,sans-serif;
}
</style>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Appoinments</title>
</head>
<body>
<div id="main">
<div id="first">
<p>All Appoinments</p>
<div id="second">
<div id="class">
<h4>Select patients </h4>
<p>All Patients </p>
</div>
<hr>
<div id="small">
<div id="sun">
<h3>Want to book an appointment?
</h3>
<img src="https://newassets.apollo247.com/images/ic_doctor_consult.svg" alt="">
</div>
<a href="doctors/doctors.html"><button>Book Appoinment</button></a>
</div>
</div>
</div>
</div>
</body>
</html>