forked from nicky81818/1800_202310_DTC06
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutus.html
More file actions
66 lines (52 loc) · 3.3 KB
/
Copy pathaboutus.html
File metadata and controls
66 lines (52 loc) · 3.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>InsurUs</title>
<meta name="comp1800 template" content="My 1800 App">
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="./images/logo_icon_black.png">
<!-- Bootstrap Library CSS CDN go here -->
<!-- Boostrap Library JS CDN go here -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous">
</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-storage.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/ui/4.8.1/firebase-ui-auth.js"></script>
<link type="text/css" rel="stylesheet" href="https://www.gstatic.com/firebasejs/ui/4.8.1/firebase-ui-auth.css" />
<!-- Other libraries go here -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet">
<!-- Link to styles of your own -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="./styles/style.css">
</head>
<body>
<nav id="navbarPlaceholder"></nav>
<main>
<div class="jumbotron">
<h1 class="display-4">About Us</h1>
<p class="lead"></p>
<hr class="my-4">
<p>Since 2023, our mission has been to provide a reliable and insurance item logging solution to protect our customers from the unexpected. We aim to exceed our customers' expectations by continuing to deliver exceptional customer service and innovative services that meet their evolving needs. We are committed to operating with integrity, transparency, and professionalism, and to building long-term relationships based on trust and mutual respect with our customers, employees, and partners. Our goal is to be responsible corporate citizens, contributing to the communities we serve and making a positive impact on society.</p>
</div>
</main>
<footer id="footerPlaceholder"></footer>
<!---------------------------------------------->
<!-- Your own JavaScript functions go here -->
<!---------------------------------------------->
<!-- Link to scripts of your own -->
<!-- <script src="./scripts/script.js"></script> -->
<script src="./scripts/firebaseAPI_DTC06.js"></script>
<script src="./scripts/skeleton.js"></script>
</body>
</html>