-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
36 lines (33 loc) · 1.24 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
<!DOCTYPE html>
<html>
<head>
<title>Welcome | Ct₹l Budget</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >
<!--jQuery library-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!--Latest compiled and minified JavaScript-->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<?php
include 'includes/header.php';
?>
<div>
<div id="banner_image">
<div class="container">
<center>
<div id="banner_content">
<h1>We help you control your budget</h1>
<h5><br>Fitness that fits in your busy lifestyle and budget</h5><br>
<a href="login.php?error=" class="btn btn-info btn-lg active">Start Today</a>
</div>
</center>
</div>
</div>
</div>
<?php
include 'includes/footer.php';
?>
</body>
</html>