-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
79 lines (65 loc) · 3.74 KB
/
about.php
File metadata and controls
79 lines (65 loc) · 3.74 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<?php include __DIR__ . "/partials/header.php";
?>
<body>
<main>
<!-- Hero -->
<div class="jumbotron mt-5 p-3 p-md-5 text-dark bg-light">
<div class="col-md-6 px-0">
<h1 class="display-4">About <i>Us</i></h1>
<p class="lead my-3">Wut? You <i>really</i> wanna find out more about us? 🤣</p>
</div>
</div>
<!-- Hero END -->
<div class="col-md-12 ">
<h2 class="mb-3 mt-3 text-center">
We dig digital <i>games. GG</i>!
</h2>
<div class="px-3">
<h2 class="blog-post-title">The Company:</h2>
<p>Our company was born in 2018. With a passion for games and online entertainment, we decided to create our own online store for gamers! We currently offer games from:</p>
<ul>
<li>Steam/PC/Microsoft</li>
<li>XBOX 360, XBOX ONE</li>
<li>Playstation 4, Playstation 5</li>
</ul>
<h3>COMPANY MISSION STATEMENT</h3>
<p>Our mission is simple - to become the Ultimate Pokemon Champion! <em>Gotta catch 'em all!</em></p>
<p>Seriously - we want to bring digital goods (games) as easily to our users as possible.</p>
<p>This allows for instant game codes instead of having to drive to your nearest stockist!</p>
<h3>COMPANY VISION STATEMENT</h3>
<p>We have a pretty strong Charizard with us... <em>Use Flamethrower!</em></p>
<p>Again, Seriously - Our vision is to keep doing our best in bringing competitive prices at super awesome convienence! </p>
</div>
<div class="row container-fluid">
<div class="col-md-6">
<div class="card flex-md-row mb-4 box-shadow h-md-250">
<div class="card-body d-flex flex-column align-items-start">
<strong class="d-inline-block mb-2 slogan-text">Owner</strong>
<h3 class="mb-0">
<p class="text-dark">Justin</p>
</h3>
<p class="card-text mb-auto">Handles all things business like! Keeps up with all stakeholders and ensures the company is doing right by the books </p>
</div>
<img src="https://picsum.photos/id/1/200/200" class="card-img-right flex-auto d-none d-md-block" alt="Justin working">
</div>
</div>
<div class="col-md-6">
<div class="card flex-md-row mb-4 box-shadow h-md-250">
<div class="card-body d-flex flex-column align-items-end">
<strong class="d-inline-block mb-2 text-secondary">Logistics</strong>
<h3 class="mb-0">
<p class="text-dark">Justin</p>
</h3>
<p class="card-text mb-auto">This bloke handles all the other stuff - campaigns, the website, marketing media... Everything to throw it all out there for users to discover us!</p>
</div>
<img src="https://picsum.photos/id/5/200/200" class="card-img-left flex-auto d-none d-md-block" alt="Justin working more">
</div>
</div>
</div>
</div>
</main>
<?php include __DIR__ . "/partials/footer.php"; ?>
</body>
</html>