-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout-us.php
44 lines (36 loc) · 1.32 KB
/
about-us.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
<?php
include 'backstore/UserHandlingAPI.php';
session_start();
$sessionLoginHandler = &$_SERVER["login"];
if (isset($sessionLoginHandler)) {
$sessionLoginHandler->checkToken();
} else {
$_SESSION['login'] = new UserHandlingAPI();
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<!--<link rel="stylesheet" type="text/css" href="template.css" />
<link rel="stylesheet" type="text/css" href="navbar.css" />-->
<link rel="stylesheet" type="text/css" href="css/main.minified.css" />
<script src="menu.js"></script>
<script src="js/mobile-menu.js"></script>
<script src="js/scroll-hiding.js"></script>
</head>
<body>
<header id="head">
</header>
<div class="landing" id="about-us">
<div class="fade-cover"></div>
<h1>A real-life<br><span class="italic" style="font-family: 'Courier New'"> digital-only store</span><br> right next-door!</h1>
<h2>Founded in 1898, we're proud to serve the Canadian people <br> with <span class="green">quality</span> foods and <span class="green">quality</span> service! </h2>
</div>
<footer id="foot">
<a href="about-us.php">About us</a>
<a href="legal-notice.php">Legal notice</a>
</footer>
</body>
</html>