-
Notifications
You must be signed in to change notification settings - Fork 0
/
Index.html
executable file
·122 lines (121 loc) · 2.18 KB
/
Index.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
<!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>
</head>
<body>
<header>
<div class="container">
<div class="image-with-title">
<img src="images/logo.jpg" alt="Matter Hosipital">
<textalign - center> <h2 class="title">Matter Hosipital</h2>
</div>
</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>
<h2>Departments</h2>
<ul>
<li>Cancer
<ul>
<li><a href="courses.html">CANCER CENTER</a></li>
<li><a href="">DELIVERY</a></li>
</ul>
</li>
<li>MEDICAL
<ul>
<li><a href="">PHARMACY</a></li>
<li><a href="">PHYSYOLOGY</a></li>
</ul>
</li>
<li>Commerce
<ul>
<li><a href="">Accounts</a></li>
<li><a href="">FUNDING</a></li>
</ul>
</li>
</ul>
</section>
</main>
</body>
</html>