-
Notifications
You must be signed in to change notification settings - Fork 0
/
Department.html
executable file
·114 lines (113 loc) · 2.09 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
<!DOCTYPE html>
<html>
<head>
<title>Matter Hosipital</title>
<link rel="stylesheet" type="text/css" href="style.css">
<style>
/* Container for logo and title */
.logo-container {
display: flex;
align-items: center;
margin: 10px;
}
/* Logo image */
.logo {
height: 50px;
margin-right: 10px;
}
/* Title */
.title {
font-size: 24px;
}
/* Navigation menu */
nav {
background-color: #f2f2f2;
padding: 10px;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
justify-content: space-around;
}
nav li {
padding: 5px;
}
nav a {
text-decoration: none;
color: #333;
font-weight: bold;
}
nav a:hover {
color: #0066cc;
}
/* Departments list */
.departments {
margin: 20px;
}
.departments h2 {
font-size: 24px;
margin-bottom: 10px;
}
.departments ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.departments li {
padding: 5px;
border: 1px solid #ccc;
border-radius: 5px;
margin-bottom: 10px;
}
.departments li ul {
margin-left: 20px;
margin-top: 5px;
margin-bottom: 5px;
}
.departments li a {
color: #333;
}
.departments li a:hover {
color: #0066cc;
}
</style>
</head>
<body>
<header>
<div class="logo-container">
<img class="logo" src="images/logo.jpg" alt="Matter Hosipital">
<h1 class="title">Matter Hosipital</h1>
</div>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="Department.html">Departments</a></li>
<li><a href="admission.html">Admission</a></li>
<li><a href="gallery.html">Gallery</a></li>
</ul>
</nav>
</header>
<main>
<section class="departments">
<h2>Departments</h2>
<ul>
<li>CANCER
<ul>
<li><a href="cancer.html">Cancer</a></li>
<li><a href="we care.html">WE Care</a></li>
</ul>
</li>
<li>Kids
<ul>
<li><a href="#">Day care</a></li>
<li><a href="#">Matter kids</a></li>
</ul>
</li>
<li>Commerce
<ul>
<li><a href="#">Accounts</a></li>
<li><a href="#">Economics</a></li>
</ul>
</li>