-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gallery.html
executable file
·37 lines (35 loc) · 1.03 KB
/
Gallery.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
<!DOCTYPE html>
<html>
<head>
<title>Gallery - Matter Hosipital</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<img src="images/logo.jpg" height="100px" width="100px">
<h1 class="title">Matter Hosipital</h1>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="Department.html">Department</a></li>
<li><a href="admission.html">Admission</a></li>
<li><a href="gallery.html">Gallery</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Gallery</h2>
<div class="gallery">
<img src="images/class.jpg" height="100px" width="100px">
<img src="images/materrun.jpg" height="100px" width="100px">
<img src="images/nurse.jpg" height="100px" width="100px">
<img src="images/staff.jpg" height="100px" width="100px">
<img src="images/team.jpg" height="100px" width="100px">
<img src="images/pilar.jpg" height="100px" width="100px">
<img src="images/staff.jpg" height="100px" width="100px">
</div>
</section>
</main>
</body>
</html>