-
Notifications
You must be signed in to change notification settings - Fork 28
/
aboutus.php
47 lines (43 loc) · 1.7 KB
/
aboutus.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
<!DOCTYPE html>
<?php
session_start();
include 'includes/datas/languages.php';
?>
<html>
<!-- header -->
<head>
<title>GamePulse - Discover Exciting Games</title>
<!-- Include Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap JS and Popper.js (for dropdowns) -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<!-- Include your custom stylesheet -->
<link href="assets/css/main.css" rel="stylesheet">
</head>
<body>
<!-- Navbar (if applicable) -->
<!-- Include Navbar from another file or code it here -->
<?php
include 'includes/header/header.inc.php'; // Include header
?>
<!-- Main Content -->
<div class="container mt-5">
<div class="row">
<div class="col-md-8 offset-md-2 text-center">
<h1><?php echo $about_home[$langue]; ?></h1>
<h2 class="lead"><?php echo $about1[$langue]; ?></h2>
<p><?php echo $about2[$langue]; ?></p>
<p><?php echo $about3[$langue]; ?></p>
<p><?php echo $about4[$langue]; ?></p>
</div>
</div>
</div>
<!-- Include Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script>
<!-- Include the footer -->
<?php include 'includes/footer/footer.inc.php'; ?>
</body>
</html>