-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.php
45 lines (42 loc) · 1.21 KB
/
gallery.php
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
<html>
<head>
<title>blood donation|gallery</title>
<link rel="stylesheet" href="styles.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous">
</head>
<body>
<header>
<nav>
<h1>BLOOD negative</h1>
<ul id="nav">
<li><a class="st" href="index.php">HOME</a></li>
<li><a class="st" href="about.php">ABOUT US</a></li>
<li><a class="active" href="#">GALLERY</a></li>
<li><a class="st" href="contact.php">CONTACT</a></li>
</ul>
</nav>
</header>
<div class="divider"></div>
<div class="image">
<div class="row justify-content-evenly">
<div class="col-6 ">
<img class="img-fluid" src="image/a1.jpg">
</div>
<div class="col-6 ">
<img class="img-fluid" src="image/b2.jpg">
</div>
<div class="col-6 ">
<img class="img-fluid" src="image/c3.jpg">
</div>
<div class="col-6 ">
<img class="img-fluid" src="image/d4.jpg">
</div>
</div>
</div>
<div class="divider"></div>
<footer>
copyrights © reserved by BLOODnegative since 2019.<br>
<u>support@bloodnegative.com</u>
</footer>
</body>
</html>