-
Notifications
You must be signed in to change notification settings - Fork 0
/
covid19-update.php
47 lines (38 loc) · 2.05 KB
/
covid19-update.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
<?php include "components/footer.php" ?>
<?php include "php/helper.php" ?>
<?php include "components/navbar.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">
<!-- custom css -->
<link rel="stylesheet" href="css/styles.css">
<title>BookBae | Covid 19 Update</title>
</head>
<body>
<!-- Navbar starts -->
<?php navbar(''); ?>
<!-- Navbar ends -->
<!-- Page content starts -->
<section class="container mt-3 animate__animated animate__slideInLeft">
<h2><strong>Covid 19 Update</strong></h2>
<div class="hr mb-3"></div>
<p>
Dear Customers!<br><br>
We just want you to know that we are taking every precaution in creating a safe atmosphere for our staff and customers!<br><br>
The health and safety continues to be our top priority as we face the challenges associated with COVID-19. Prior to being shipped, each product, package, paper, sticker, etc. is sterilized to ensure safety for our customers. One of the many benefits of supporting small businesses is that we are able to inspect every single package that is shipped out to you!<br><br>
Please notice that our carriers and shipping companies are experiencing delivery delays due to the sterilization process, but everyone is doing their best to deliver your package as soon as possible.<br><br>
We will ALWAYS be here to answer your questions, track your order and make sure it is delivered safe and sound to your doorstep!<br><br>
From our family to yours, stay safe and keep your heads up!<br><br>
<strong>Please contact us anytime at:</strong> <a href="mailto:[email protected]">[email protected]</a>
</p>
</section>
<!-- Page content ends -->
<!-- Footer starts -->
<?php footer(); ?>
<!-- Footer ends -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>