-
Notifications
You must be signed in to change notification settings - Fork 2
/
aboutus.php
61 lines (47 loc) · 1.84 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?php
require("Common_files/php/database.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- BOOTSTRAP CSS LINK START -->
<link rel="stylesheet" href="Common_files/css/bootstrap.min.css" />
<!-- BOOTSTRAP CSS LINK END -->
<!-- BOOTSTRAP JS LINK START -->
<script src="Common_files/js/bootstrap.bundle.min.js"></script>
<!-- BOOTSTRAP JS LINK END -->
<!-- ANIMATE CSS LINK START -->
<link rel="stylesheet" href="Common_files/css/animate.min.css" />
<!-- ANIMATE CSS LINK END -->
<!-- SWEET ALERT JS LINK START -->
<script src="Common_files/js/sweetalert.min.js"></script>
<!-- SWEET ALERT JS LINK END -->
<!--FONT AWESOME LINK START -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css" integrity="sha512-SzlrxWUlpfuzQ+pcUCosxcglQRNAq/DZjVsC0lE40xsADsfeQoEypE+enwcOiGjk/bSuGGKHEyjSoQ1zVisanQ==" crossorigin="anonymous" referrerpolicy="no-referrer"/>
<!--FONT AWESOME LINK END -->
<!-- JQUERY LINK START -->
<script src="Common_files/js/jquery.min.js"></script>
<!-- JQUERY LINK END -->
<!-- GOOGLE FONT START -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Audiowide"/>
<!-- GOOGLE FONT END -->
<title>About Us</title>
</head>
<body>
<!-- nav -->
<?php
require("assets/nav.php");
?>
<div class="container shadow-lg bg-white p-4 border" style="margin-top: 100px;">
<?php
echo $brand_res['brand_about'];
?>
</div>
<!-- footer -->
<?php require("assets/footer.php"); ?>
</body>
</html>