forked from DoonOnthon/GamePulse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutus.php
37 lines (32 loc) · 1.89 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
<!DOCTYPE html>
<html>
<!-- header -->
<head>
<title>About GamePulse</title>
<!-- Include Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Include your custom stylesheet -->
<link href="stylesheet.css" rel="stylesheet">
</head>
<body>
<!-- Navbar (if applicable) -->
<!-- Include Navbar from another file or code it here -->
<!-- Main Content -->
<div class="container mt-5">
<div class="row">
<div class="col-md-8 offset-md-2 text-center">
<h1>About GamePulse</h1>
<h2 class="lead">GamePulse is more than just a platform; it's a vibrant community that celebrates gaming in all its forms.</h2>
<p>At GamePulse, our mission is to provide gamers with a curated space where they can discover, explore, and engage with a diverse array of games. We believe that gaming is not just a pastime but an immersive experience that brings people together, sparks creativity, and offers endless entertainment.</p>
<p>Our team of passionate developers, designers, and gaming enthusiasts works tirelessly to ensure that GamePulse remains a hub for all things gaming. From showcasing popular titles to highlighting upcoming releases, we strive to create an inclusive environment that caters to gamers of every taste and preference.</p>
<p>Join us on this journey as we continue to evolve and grow. GamePulse is your destination to stay connected with the pulse of gaming excitement.</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.inc.php'; ?>
</body>
</html>