-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
49 lines (48 loc) · 1.88 KB
/
index.php
File metadata and controls
49 lines (48 loc) · 1.88 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
<?php
include 'public/base.php';
include 'public/navbar.php';
?>
<div class="row">
<div class="col s12 m12 l12 animated fadeIn" style="padding: 0px;">
<div class="slider fullscreen">
<ul class="slides">
<li>
<img src="public/images/tert1.png"> <!-- random image -->
<div class="caption center-align">
<h1 style="font-weight: 500;" class="grey-text text-darken-4">TertDrive</h1>
<h5 class="light grey-text text-darken-3" style="font-weight: 500;font-size: 28px;">Simple Driving Application For Tertiary Schools</h5>
</div>
</li>
<li>
<img src="public/images/tert2.png"> <!-- random image -->
<div class="caption center-align">
<h1 style="font-weight: 500;">TertDrive</h1>
<h5 class="grey-text text-darken-4" style="font-weight: 500;font-size: 28px;">24/7 Management</h5>
</div>
</li>
<li>
<img src="public/images/tert3.png"> <!-- random image -->
<div class="caption center-align">
<h1 style="font-weight: 500;" class="grey-text text-darken-4">TertDrive</h1>
<h5 class="grey-text text-darken-3" style="font-weight: bold;">Driving at its Best</h5>
</div>
</li>
<li>
<img src="public/images/tert6.png"> <!-- random image -->
<div class="caption right-align">
<h1 style="font-weight: 500;" class="grey-text text-darken-4">TertDrive</h1>
<h5 class="light grey-text text-darken-3" style="font-weight: bold;">We're Here To Solve Your Problems.</h5>
</div>
</li>
</ul>
</div>
</div>
<!-- <div class="container">
<div class="col s12 m12 l12">
<div class="card-panel"></div>
</div>
</div> -->
</div>
<script type="text/javascript">
$('.slider').slider();
</script>