-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdepartment.html
133 lines (129 loc) · 5.82 KB
/
department.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Arogya Sampark</title>
<link rel="icon" type="image/png" href="./assets/favicon.png">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./styling/style.css">
<link rel="stylesheet" href="./styling/department.css">
<nav class="navbar navbar-expand-lg navbar-light bg-transparent">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="./index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Departments</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./appointment.html">Appointment</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./news.html">News</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./contact.html">About Us</a>
</li>
<a class="navbar-brand" href="#">
<img src="./assets/favicon.png" width="35" height="35" class="d-inline-block align-top" alt="">
Arogya Sampark
</a>
</ul>
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="./login.html">Log In / Sign Up</a>
</li>
<li class="nav-item-emergency">
<a class="nav-link" href="./emergency.html">Emergency</a>
</li>
</ul>
</div>
</nav>
</head>
<body>
<h1>Departments</h1>
<div class="container mt-5">
<div class="card">
<div class="row">
<div class="col-md-4">
<img src="./assets/pic1.jpg" class="img-fluid">
</div>
<div class="col-md-8" style="padding-left: 1.4vw; padding-top: 1.5vh;">
<h2 class="card-title mt-2">General Surgery Department</h2>
<h5 id="hod" style="padding-bottom: 0.5vh; display: none;">Head of Department (HOD) - Dr. Subhankar Ray</h5>
<p id="desc">General surgery involves a range of surgical procedures focused on the abdomen and its organs,
including the digestive tract. Surgeons in this department address various medical conditions and perform
surgeries for treatment.</p>
</div>
</div>
</div>
<div class="card">
<div class="row" id="2">
<div class="col-md-8" style="padding-left: 3vw; padding-top: 3vh;">
<h2 class="card-title mt-2">Cardiology Department</h2>
<h5 id="hod" style="padding-bottom: 0.5vh; display:none">Head of Department (HOD) - Dr. Manoj Baidya</h5>
<p id="desc">Cardiology deals with the study and treatment of heart-related conditions. Cardiologists diagnose
and manage heart diseases, cardiac emergencies, heart failure, arrhythmias, and other cardiovascular
disorders.</p>
</div>
<div class="col-md-4">
<img src="./assets/pic2_edit.jpg" class="img-fluid">
</div>
</div>
</div>
<div class="card">
<div class="row">
<div class="col-md-4">
<img src="./assets/pic4.png" class="img-fluid">
</div>
<div class="col-md-8" id="2" style="padding-left: 3vw; padding-top: 2vh;">
<h2 class="card-title mt-2">Neurology Department</h2>
<h5 id="hod" style="display:none;">Head of Department (HOD) - Dr. Arnab Santra</h5>
<p id="desc">The Neurology Department focuses on the diagnosis and treatment of disorders affecting the
nervous
system, including the brain, spinal cord, and nerves. Neurologists manage conditions like epilepsy, stroke,
multiple sclerosis, and other neurological disorders.</p>
</div>
</div>
</div>
<div class="card">
<div class="row">
<div class="col-md-8" id="2" style="padding-left: 3vw; padding-top: 2vh;">
<h2 class="card-title mt-2">Department of Oncology</h2>
<h5 id="hod" style="display: none;">Head of Department (HOD) - Dr. Sambhav Agarwal</h5>
<p id="desc">Oncology is the branch of medicine that deals with the study, diagnosis, and treatment of cancer.
Oncologists specialize in various types of cancer, including their prevention, diagnosis, treatment
planning, and ongoing care.</p>
</div>
<div class="col-md-4">
<img src="./assets/pic5.jpg" class="img-fluid">
</div>
</div>
</div>
<div class="card">
<div class="row">
<div class="col-md-4">
<img src="./assets/pic10.jpg" class="img-fluid">
</div>
<div class="col-md-8" id="2" style="padding-left: 3vw; padding-top: 3vh;">
<h2 class="card-title mt-2">Emergency Department (ED)</h2>
<h5 id="hod" style="padding-bottom: 0.5vh; display: none;">Head of Department (HOD) - Dr. Nilratan Mondal</h5>
<p id="desc">The Emergency Department (ED) is the first point of contact for individuals seeking immediate
medical attention. It addresses urgent medical conditions and injuries, providing immediate care
and
stabilization before further evaluation and treatment.</p>
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script>
</body>
</html>