-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgaleri.php
More file actions
62 lines (57 loc) · 1.65 KB
/
galeri.php
File metadata and controls
62 lines (57 loc) · 1.65 KB
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
<?php
include_once("header/header.php");
?>
<body>
<?php
include_once("header/nav.php");
?>
<div class="row">
<div class="col s6">
<a href="foto.php" style="margin-left: 250px;">Foto</a>
</div>
<div class="col s6">
<a href="video.php" style="text-align: center;">video</a>
</div>
</div>
<div style="margin-left: 160px;">
<div class="gallery">
<a target="_blank" href="custom/image/unpad.png">
<img src="custom/image/unpad.png" alt="unpad">
</a>
<div class="desc">Lihat Selengkapnya</div>
</div>
<div class="row">
<div class="gallery">
<a target="_blank" href="custom/image/unpad.png">
<img src="custom/image/unpad.png" alt="unpad">
</a>
<div class="desc">Lihat Selengkapnya</div>
</div>
<div class="gallery">
<a target="_blank" href="custom/image/unpad.png">
<img src="custom/image/unpad.png" alt="unpad">
</a>
<div class="desc">Lihat Selengkapya</div>
</div>
<div class="gallery">
<a target="_blank" href="custom/image/unpad.png">
<img src="custom/image/unpad.png" alt="unpad">
</a>
<div class="desc">Lihat Selengkapnya</div>
</div>
</div>
</div>
<div style="margin-left: 160px;">
<ul class="pagination">
<li class="disabled"><a href="#!"><i class="material-icons">chevron_left</i></a></li>
<li class="active"><a href="#!">1</a></li>
<li class="waves-effect"><a href="#!">2</a></li>
<li class="waves-effect"><a href="#!">3</a></li>
<li class="waves-effect"><a href="#!">4</a></li>
<li class="waves-effect"><a href="#!">5</a></li>
<li class="waves-effect"><a href="#!"><i class="material-icons">chevron_right</i></a></li>
</ul>
</div>
<?php include_once('header/footer.php');
?>
</body>