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
|
<!doctype html> <html lang="en">
<head>
<title>JCI About</title>
<!-- css --> <?php include 'inc/headlinks.php';?> <!-- js --> <?php include 'inc/headjs.php';?>
</head>
<body>
<?php include 'inc/nav.php';?>
<div class="breadcrumb" style="background-image:url(../../assets/img/banner02.png);"> <div class="container"> <div class="breadcrumbWrapper"> <div class="breadcrumbLink text-white"> <a href="index.php" class="text-white"> Home</a> > <span class="blueFont"> About Us</span> </div> <p class="breadcrumbTitle m-0 h3 text-uppercase text-white">About Us</p>
</div> </div> </div> <section class="pageContent"> <div class="container"> <div class="pageWrap"> <h1 class="text-center">Privacy Statement</h1>
</div>
</div> </section> <?php include 'inc/footer.php';?>
<script>
</script>
</body>
</html>
|