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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
|
<!doctype html> <html lang="en">
<head>
<title>JCI Business Info</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="breadcrumbFilter"> <div class="breadcrumbWrapper"> <div class="breadcrumbLink text-white"> <a href="index.php" class="text-white"> Home</a> > <span class="blueFont"> Business Info</span> </div> <p class="breadcrumbTitle m-0 h3 text-uppercase text-white">Business Info</p>
</div> <div class="mb-3 filterSelect">
<select class="form-select"> <option selected>Asia</option> <option>Asia</option> <option>Asia</option> <option>Asia</option>
</select> </div>
</div> </div> </div> <section class="pageContent"> <div class="container"> <div class="listWrap row gapY20"> <div class="col-lg-6"> <a href="business_detail.php" class="listItem"> <img src="../../assets/img/business/busin01.png" alt="buiness01" /> <div class="positionBottom"> <p class=" h4 text-white">Brunei </p> <p class="text-white listItemDes ellipsis2">Brunei has a dual legal system, with the first inherited from British colonial rule and thus similar to Hong Kong’s common law system.</p> </div> </a>
</div> <div class="col-lg-6"> <a href="business_detail.php" class="listItem"> <img src="../../assets/img/business/busin02.png" alt="buiness01" /> <div class="positionBottom"> <p class=" h4 text-white">Cambodia </p> <p class="text-white listItemDes ellipsis2">Brunei has a dual legal system, with the first inherited from British colonial rule and thus similar to Hong Kong’s common law system.</p> </div> </a>
</div> <div class="col-lg-6"> <a href="business_detail.php" class="listItem"> <img src="../../assets/img/business/busin03.png" alt="buiness01" /> <div class="positionBottom"> <p class=" h4 text-white">Hong Kong </p> <p class="text-white listItemDes ellipsis2">Brunei has a dual legal system, with the first inherited from British colonial rule and thus similar to Hong Kong’s common law system.</p> </div> </a>
</div> <div class="col-lg-6"> <a href="business_detail.php" class="listItem"> <img src="../../assets/img/business/busin04.png" alt="buiness01" /> <div class="positionBottom"> <p class=" h4 text-white">India </p> <p class="text-white listItemDes ellipsis2">Brunei has a dual legal system, with the first inherited from British colonial rule and thus similar to Hong Kong’s common law system.</p> </div> </a>
</div> <div class="col-lg-6"> <a href="business_detail.php" class="listItem"> <img src="../../assets/img/business/busin05.png" alt="buiness01" /> <div class="positionBottom"> <p class=" h4 text-white">Indonesia </p> <p class="text-white listItemDes ellipsis2">Brunei has a dual legal system, with the first inherited from British colonial rule and thus similar to Hong Kong’s common law system.</p> </div> </a>
</div> <div class="col-lg-6"> <a href="business_detail.php" class="listItem"> <img src="../../assets/img/business/busin06.png" alt="buiness01" /> <div class="positionBottom"> <p class=" h4 text-white">Japan </p> <p class="text-white listItemDes ellipsis2">Brunei has a dual legal system, with the first inherited from British colonial rule and thus similar to Hong Kong’s common law system.</p> </div> </a>
</div> </div>
</div>
</section> <?php include 'inc/footer.php';?>
<script>
</script>
</body>
</html>
|