-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy_and_terms.html
More file actions
322 lines (296 loc) · 14 KB
/
privacy_and_terms.html
File metadata and controls
322 lines (296 loc) · 14 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
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
<!DOCTYPE html>
<html lang="en">
<head lang="en">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Title -->
<title>Nkgong Design Studio | Modern Architecture & House Plans in Pretoria</title>
<!-- Favicon -->
<link rel="shortcut icon" href="images/icon.png" type="image/png" />
<!-- CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/responsive.css">
<link rel="stylesheet" href="css/jquery.mCustomScrollbar.min.css">
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/2.1.5/jquery.fancybox.min.css" media="screen">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<!-- body -->
<body class="main-layout">
<!-- loader -->
<div class="loader_bg">
<div class="loader"><img src="images/loading.gif" alt="Loading"/></div>
</div>
<!-- end loader -->
<!-- header -->
<header>
<!-- header inner -->
<div class="header">
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-3 col logo_section">
<div class="full">
<div class="center-desk">
<div class="logo">
<a href="index.html"><img src="images/foot.webp" alt="Nkgong Design Studio" /></a>
</div>
</div>
</div>
</div>
<div class="col-md-10 offset-md-1">
<nav class="navigation navbar navbar-expand-md navbar-dark ">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExample04" aria-controls="navbarsExample04" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarsExample04">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html #about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html #service">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="index.html #gallery">Gallery</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact Us</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</div>
</header>
<!-- end header inner -->
<!-- end header -->
<!-- banner -->
<section class="banner_main">
<div id="myCarousel" class="carousel slide banner" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<div class="container">
<div class="carousel-caption relative">
<div class="row">
<div class="col-md-7 offset-md-5">
<div class="text-bg">
<div class="titlepage">
<h2>Innovative <span class="green">and</span> Sustainable <span class="green">Architectural</span> Designs</h2>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#myCarousel" role="button" data-slide="prev">
<i class="fa fa-angle-left" aria-hidden="true"></i>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#myCarousel" role="button" data-slide="next">
<i class="fa fa-angle-right" aria-hidden="true"></i>
<span class="sr-only">Next</span>
</a>
</div>
</section>
<!-- end banner -->
<!-- about -->
<div id="about" class="about">
<div class="container">
<div class="row">
<div class="col-md-5">
<div class="titlepage">
<h2>Privacy & <span class="green">Terms</span></h2>
<p>Please read through our privacy policy and terms of service below.</p>
</div>
</div>
<div class="col-md-7">
<div class="about_img">
<figure><img src="images/career_pc.webp" alt="#"/></figure>
</div>
</div>
</div>
</div>
</div>
<!-- end about -->
<div class="titlepage">
<h2>Privacy <span class="green">Policy</span></h2>
<p><b>Introduction</b><br>
Welcome to Nkgong Design Studios. Your pricacy is important to us. This Privacy Policy explains how we collect, use, and safeguard your information.
</p>
<p><b>Information We Collect</b><br>
<ol>
<li>Personal Information: Name, email address, and phone number (if provided).</li>
<li>Non-Personal Information: Website usage data, including cookies and analytics.</li>
</ol>
</p>
<p><b>How We Use Your Information</b><br>
<ol>
<li>To respond to enquiries and provide our services.</li>
<li>To improve website finctionality and user experience.</li>
<li>To communicate updates about our services.</li>
</ol>
</p>
<p><b>Sharing Your Information</b><br>
We do not share your personal information with third parties, except when required by law or for essential service functionality (e.g., payment processors).
</p>
<p><b>Cookies</b><br>
We use cookies to analyze website trafic and enhance user experience. by using our website, you consent to the use of cookies.
</p>
<p><b>Your Rights</b><br>
You can request access to, update, or delete your personal information by contacting us using one of our communication channels in the footer.
</p>
<p><b>Changes to This Policy</b><br>
We may update these terms as needed. Please check back periodically for updates.
</p>
</div>
</div>
</div>
<div class="titlepage">
<h2>Terms of <span class="green">Services</span></h2>
<p><b>Acceptence of Terms</b><br>
By using the Nkgong Design Studio website or services, you agree to these terms. If you do not agree, please disconitnue use.
</p>
<p><b>Use of Services</b><br>
<ol>
<li>You may use our services for lawful purposes only.</li>
<li>You may not engage in activities that disrupt the website or services.</li>
</ol>
</p>
<p><b>Intellectual Property</b><br>
All content, including designs, logos, and text, belongs to Nkgong Design Studio. Unauthorized use is prohibited.
</p>
<p><b>Limitation of Liability</b><br>
We reserve the right to terminate access to our website or services without notice if terms are violated.
</p>
<p><b>Intellectual Property</b><br>
All content, including designs, logos, and text, belongs to Nkgong Design Studio. Unauthorized use is prohibited.
</p>
<p><b>Governing Law</b><br>
These terms are governed by the laws of South Africa.
</p>
<p><b>Changes to Terms</b><br>
We may update these terms as needed. Please check back periodically for updates.
</p>
</div>
</div>
</div>
<!-- contact -->
<div id="contact" class="contact">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="titlepage">
<h2>Contact Us</h2>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<form id="request" class="main_form">
<div class="row">
<div class="col-md-12 ">
<input class="contactus" placeholder="Name" type="type" name="Name">
</div>
<div class="col-md-12">
<input class="contactus" placeholder="Email" type="type" name="Email">
</div>
<div class="col-md-12">
<input class="contactus" placeholder="Phone Number" type="type" name="Phone Number">
</div>
<div class="col-md-12">
<textarea class="textarea" placeholder="Message" type="type" Message="Name">Message</textarea>
</div>
<div class="col-md-12">
<button class="send_btn">Send</button>
</div>
</div>
</form>
</div>
<div class="col-md-6">
<div class="map_main">
<div class="map-responsive">
<iframe src="https://www.google.com/maps/embed/v1/place?key=AIzaSyA0s1a7phLN0iaD6-UE7m4qP-z21pH0eSc&q=833+Baccara+St+Montana+Pretoria+South+Africa" width="600" height="345" frameborder="0" style="border:0; width: 100%;" allowfullscreen=""></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- end contact -->
<!-- footer -->
<footer>
<div class="footer">
<div class="container">
<div class="row">
<div class=" col-md-3 col-sm-6">
<ul class="social_icon">
<li><a href="https://wa.me/+27760362836"><i class="fa fa-whatsapp" aria-hidden="true"></i></a></li>
<li><a href="mailto:nkgongds@gmail.com"><i class="fa fa-envelope" aria-hidden="true"></i></a></li>
<li><a href="https://www.linkedin.com/in/nkgong-design-studio-54b66a2b5?"><i class="fa fa-linkedin" aria-hidden="true"></i></a></li>
<li><a href="https:www.facebook.com/profile.php?id=108356089020668"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
</ul>
<p class="variat pad_roght2">Stay connected with us! Follow our journey and explore more of our projects, design insights, and updates on social media.
</p>
</div>
<div class=" col-md-3 col-sm-6">
<h3>Information</h3>
<ul class="link_menu">
<li><a href="privacy_and_terms.html">Privacy & Terms</a></li>
<li><a href="careers.html">Careers</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</div>
<div class="col-md-3 col-sm-6">
<h3>Quick Links</h3>
<ul class="link_menu">
<li><a href="index.html">Home</a></li>
<li><a href="index.html"> About</a></li>
<li><a href="index.html">Services</a></li>
<li><a href="index.html">Gallery</a></li>
</ul>
</div>
<div class="col-md-3 col-sm-6">
<h3>OUR Design</h3>
<a href="index.html"><img src="images/foot.webp" alt="Nkgong Design Studios"></a>
</div>
</div>
</div>
<div class="copyright">
<div class="container">
<div class="row">
<div class="col-md-10 offset-md-1">
<p>Copyright © 2025 Nkgong Design Studios. All Rights Reserved.</p>
</div>
</div>
</div>
</div>
</div>
</footer>
<!-- end footer -->
<!-- Javascript files-->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/jquery-3.0.0.min.js"></script>
<!-- sidebar -->
<script src="js/jquery.mCustomScrollbar.concat.min.js"></script>
<script src="js/custom.js"></script>
</body>
</html>