-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
58 lines (36 loc) · 1.2 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Home Page</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lobster">
<link href="style.css" rel="stylesheet">
</head>
<body>
<!-- Navigation -->
<section class="nav-bar">
<?php
include("nav-bar.html")
?>
</section>
<!--- image -->
<div class="content-wrapper">
<img src="bg1.jpg">
<div class="text-wrapper">
<h1> CREDIT MANAGEMENT<br> SYSTEM<h1>
</div>
</div>
<!--- Footer -->
<section class="footer">
<?php
include("footer.html")
?>
</section>
</body>
</html>