-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
42 lines (32 loc) · 881 Bytes
/
index.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
<!DOCTYPE html>
<!-- fetch css links & title format -->
<?php
include './php/common.php';
links("Homepage");
title("Homepage");
?>
<body>
<div class="hero">
<section>
<!-- fetch background video -->
<?php
video_back('./assests/video/keymaster_v5.mp4')
?>
<?php
nav_bar();
?>
</nav>
</section>
</div>
<!-- Script to run owl carousel -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.min.js"></script>
<script src="./js/server.js"></script>
</div>
<!-- Back to Homepage box overflow -->
<a href="#" class="gotobottom"><i class="fas fa-arrow-up"></i></a>
</body>
<?php
footer_function();
?>