-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
49 lines (48 loc) · 1.13 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
<?php
include 'config.php';
?>
<!DOCTYPE html>
<html>
<head>
<title><?php echo $lang['title']; ?></title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<style type="text/css">
.footer{
left: 0;
position: fixed;
text-align: center;
color: white;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" href="#"><?php echo $lang['home']; ?></a>
</li><!--
--><li class="nav-item">
<a class="nav-link"href="#"><?php echo $lang['pricing']; ?></a>
</li><!--
--><li class="nav-item">
<a class="nav-link"href="#"><?php echo $lang['contact']; ?></a>
</li>
</ul>
</nav>
<div class="container" style="margin-top: 100px;">
<div class="row justify-content-center">
<div class="col-md-6 col-md-offset-4 text-center">
<h1><?php echo $lang['heading']; ?></h1>
<p>
<?php echo $lang['description']; ?>
</p>
</div>
</div>
</div>
<div class="footer bg-dark">
Engish | German
</div>
</body>
</html>