-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhospital.html
109 lines (91 loc) · 3.83 KB
/
hospital.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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" type="image/png" href="assets/images/favicon.png" />
<title>Medicus | Hospital</title>
<!-- MAIN STYLESHEET -->
<link rel="stylesheet" href="./assets/css/main.css">
<!-- SUB STYLESHEET -->
<link rel="stylesheet" href="./assets/css/hospital.css">
<!-- ICON CDN -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
</head>
<body>
<header>
<a href="./"><img src="./assets/images/icon.png" alt="icon"></a>
</header>
<div class="sub-header">
</div>
<div class="background">
<div class="container">
<div class="image-box">
<img src="./assets/images/hospital-placeholder.jpg" alt="hospital">
</div>
<div class="details-box">
<div class="title">
<h1>Krishna</h1>
<p>Kochi</p>
</div>
<div class="details">
<div class="rating">
☆☆☆☆☆
</div>
<p><b>Address</b> <br>21st street, Kochi, Kerala, India</p>
<p><b>Phone Number</b> <br>1252034200</p>
</div>
<div class="review-box">
<div class="review">
<p class="content">"Nice Hospital"</p>
<p class="reviewer">- Saul</p>
</div>
<div class="review">
<p class="content">"Awesome Hospital" </p>
<p class="reviewer">- John</p>
</div>
</div>
<div class="department-box">
<h1>Departments</h1>
<div class="dep-container">
<div class="dep-header">
<button class="leftie" id="1" onclick="Select1()">Ortho</button>
<button id="2" onclick="Select2()">Cardio</button>
<button class="rightie" id="3" onclick="Select3()">Neuro</button>
</div>
<div class="dep-results">
<div class="dep" id="dep-1">
<ol>
<li><a href="./doctor.html">Dr. Wolverine</a></li>
<li><a href="./doctor.html">Dr. Deadpool</a></li>
</ol>
</div>
<div class="dep" id="dep-2">
<ol>
<li><a href="./doctor.html">Dr. Jack Sparrow</a></li>
<li><a href="./doctor.html">Dr. Iron ManM</a></li>
</ol>
</div>
<div class="dep" id=dep-3>
<ol>
<li><a href="./doctor.html">Dr Strange</a></li>
<li><a href="./doctor.html ">Dr. Thanos</a></li>
</ol>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<footer>
<div class="footer-content">
<p>Made with <span style="color:white;">♥</span> by <span
style="background-color: rgb(47, 47, 131);">Runtime
Terror</span></p>
</div>
</footer>
</div>
<script src="./assets/js/hospital.js"></script>
</body>
</html>