-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdemo.php
34 lines (34 loc) · 998 Bytes
/
demo.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
<?php $title = "Library | CEK";
include "head.php";
?>
<body class="page">
<div id="wrapper">
<?php require "navbar.php"; ?>
<div class="page-contents container">
<div class="title center">
<h2 class="underlined"><span>Gallery </span></h2>
</div>
<!-- <div class="image">
<img src="assets/img/ec.jpg" alr="ECE" height="500" width="100%">
</div> -->
<div class="contents">
<b class="imp">Arts </b>
<br>
<br>
<div class="row">
<div class="col s12 m4">
<img src="./assets/img/lm3.jpg" class="responsive-img materialboxed"/>
</div>
<div class="col s12 m4">
<img src="./assets/img/lm5.jpg" class="responsive-img materialboxed"/>
</div>
<div class="col s12 m4">
<img src="./assets/img/lm2.jpg" class="responsive-img materialboxed"/>
</div>
</div>
</div>
</div>
<?php require "footer.php"; ?>
</div>
</body>
</html>