-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
privacy.html
303 lines (296 loc) · 15.6 KB
/
privacy.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Privacy-Policy</title>
<link rel="shortcut icon" href="images/favicon.ico"/>
<link rel="bookmark" href="images/favicon.ico"/>
<link rel="stylesheet" href="css/bootstrap.min.css"><!-- bootstrap-CSS -->
<link rel="stylesheet" href="css/bootstrap-select.css"><!-- bootstrap-select-CSS -->
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" /><!-- style.css -->
<link rel="stylesheet" href="css/font-awesome.min.css" /><!-- fontawesome-CSS -->
<link rel="stylesheet" href="css/menu_sideslide.css" type="text/css" media="all"><!-- Navigation-CSS -->
<!-- meta tags -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="keywords" content="" />
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script>
<!-- //meta tags -->
<!--<link href='http://fonts.googleapis.com/css?family=Ubuntu+Condensed' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,300italic,400italic,600,600italic,700,700italic,800,800italic' rel='stylesheet' type='text/css'>-->
<!-- js -->
<script type="text/javascript" src="js/jquery.min.js"></script>
<!-- js -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/bootstrap.js"></script>
<script src="js/bootstrap-select.js"></script>
<script>
$(document).ready(function () {
var mySelect = $('#first-disabled2');
$('#special').on('click', function () {
mySelect.find('option:selected').prop('disabled', true);
mySelect.selectpicker('refresh');
});
$('#special2').on('click', function () {
mySelect.find('option:disabled').prop('disabled', false);
mySelect.selectpicker('refresh');
});
$('#basic2').selectpicker({
liveSearch: true,
maxOptions: 1
});
});
</script>
<!-- language-select -->
<script type="text/javascript" src="js/jquery.leanModal.min.js"></script>
<link href="css/jquery.uls.css" rel="stylesheet"/>
<link href="css/jquery.uls.grid.css" rel="stylesheet"/>
<link href="css/jquery.uls.lcd.css" rel="stylesheet"/>
<!-- Source -->
<script src="js/jquery.uls.data.js"></script>
<script src="js/jquery.uls.data.utils.js"></script>
<script src="js/jquery.uls.lcd.js"></script>
<script src="js/jquery.uls.languagefilter.js"></script>
<script src="js/jquery.uls.regionfilter.js"></script>
<script src="js/jquery.uls.core.js"></script>
<script>
$( document ).ready( function() {
$( '.uls-trigger' ).uls( {
onSelect : function( language ) {
var languageName = $.uls.data.getAutonym( language );
$( '.uls-trigger' ).text( languageName );
},
quickList: ['en', 'hi', 'he', 'ml', 'ta', 'fr'] //FIXME
} );
} );
</script>
<!-- //language-select -->
</head>
<body>
<!-- Navigation -->
<div class="agiletopbar">
<div class="wthreenavigation">
<div class="menu-wrap">
<nav class="menu">
<div class="icon-list">
<a href="arduino.html"><i class="fa fa-fw fa-mobile"></i><span>Arduino</span></a>
<a href="boards.html"><i class="fa fa-fw fa-laptop"></i><span>Pattern</span></a>
<a href="compiler.html"><i class="fa fa-fw fa-car"></i><span>Compiler</span></a>
<a href="libraries.html"><i class="fa fa-fw fa-motorcycle"></i><span>Library</span></a>
<a href="rtos.html"><i class="fa fa-fw fa-wheelchair"></i><span>FreeRTOS</span></a>
<a href="template.html"><i class="fa fa-fw fa-th-list"></i><span>Template</span></a>
<a href="uploader.html"><i class="fa fa-fw fa-upload"></i><span>Uploader</span></a>
<a href="skeleton.html"><i class="fa fa-fw fa-asterisk"></i><span>Skeleton</span></a>
<a href="optimize.html"><i class="fa fa-fw fa-asterisk"></i><span>Optimize</span></a>
<a href="platform.html"><i class="fa fa-fw fa-shield"></i><span>Platform</span></a>
<a href="software.html"><i class="fa fa-fw fa-at"></i><span>Software</span></a>
<a href="quality.html"><i class="fa fa-fw fa-thumbs-up"></i><span>Quality</span></a>
</div>
</nav>
<button class="close-button" id="close-button">Close Menu</button>
</div>
<button class="menu-button" id="open-button"> </button>
</div>
<div class="clearfix"></div>
</div>
<!-- //Navigation -->
<!-- header -->
<header>
<div class="w3ls-header"><!--header-one-->
<div class="w3ls-header-left">
<p><a href="download.html"><i class="fa fa-download" aria-hidden="true"></i>Download</a></p>
</div>
<div class="w3ls-header-right">
<ul>
<li class="dropdown head-dpdn">
<a href="https://www.os-q.com/pio" aria-expanded="false"><i class="fa fa-fire" aria-hidden="true"></i>PIO</a>
</li>
<li class="dropdown head-dpdn">
<a href="https://www.os-q.com/qio"><i class="fa fa-cogs" aria-hidden="true"></i>QIO</a>
</li>
<li class="dropdown head-dpdn">
<a href="https://github.com/OS-Q"><i class="fa fa-github" aria-hidden="true"></i>GitHub</a>
</li>
</ul>
</div>
<div class="clearfix"> </div>
</div>
<div class="container">
<div class="agile-its-header">
<div class="logo">
<h1><a href="index.html"><span>OS</span>-Q</a></h1>
</div>
<div class="agileits_search">
<form action="#" method="post">
<input name="Search" type="text" placeholder="OpenSource - Quality" required=" ">
<select id="agileinfo_search" name="agileinfo_search" required="">
<option value="">Components</option>
<option value="Arduino">Arduino</option>
<option value="Pattern">Pattern</option>
<option value="Compiler">Compiler</option>
<option value="Library">Library</option>
<option value="FreeRTOS">FreeRTOS</option>
<option value="Uploader">Uploader</option>
<option value="Skeleton">Skeleton</option>
<option value="Optimize">Optimize</option>
<option value="Platform">Platform</option>
<option value="Software">Software</option>
<option value="Quality">Quality</option>
</select>
<button type="submit" class="btn btn-default" aria-label="Left Align">
<i class="fa fa-search" aria-hidden="true"> </i>
</button>
</form>
</div>
<div class="clearfix"></div>
</div>
</div>
</header>
<!-- //header -->
<!-- breadcrumbs -->
<div class="w3layouts-breadcrumbs text-center">
<div class="container">
<span class="agile-breadcrumbs"><a href="index.html"><i class="fa fa-thumbs-up home_1"></i></a> / <span>Privacy Policy</span></span>
</div>
</div>
<!-- //breadcrumbs -->
<!-- Privacy -->
<div class="privacy main-grid-border">
<div class="container">
<h2 class="w3-head">Privacy Policy</h2>
<p>On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur.</p>
<h4>Security:</h4>
<p class="privacy-para">At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum</p>
<ol class="privacy-start">
<li><a href="#">But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids .</a></li>
<li><a href="#">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed .</a></li>
<li><a href="#">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse.</a></li>
<li><a href="#">But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids .</a></li>
<li><a href="#">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed .</a></li>
<li><a href="#">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse.</a></li>
</ol>
<h4 class="use-privay">Tips for safe transaction:</h4>
<ul class="privacy-start">
<li><a href="#">Contrary to popular belief, Lorem Ipsum is not simply random text.</a></li>
<li><a href="#">There are many variations of passages of Lorem Ipsum available.</a></li>
<li><a href="#">It is a long established fact that a reader will be distracted.</a></li>
<li><a href="#">Lorem Ipsum is simply dummy text of the printing.</a></li>
<li><a href="#">Sed ut perspiciatis unde omnis iste natus error sit voluptatem.</a></li>
<li><a href="#">Contrary to popular belief, Lorem Ipsum is not simply random text.</a></li>
<li><a href="#">There are many variations of passages of Lorem Ipsum available.</a></li>
<li><a href="#">It is a long established fact that a reader will be distracted.</a></li>
<li><a href="#">Lorem Ipsum is simply dummy text of the printing.</a></li>
<li><a href="#">Sed ut perspiciatis unde omnis iste natus error sit voluptatem.</a></li>
<li><a href="#">Contrary to popular belief, Lorem Ipsum is not simply random text.</a></li>
<li><a href="#">There are many variations of passages of Lorem Ipsum available.</a></li>
<li><a href="#">It is a long established fact that a reader will be distracted.</a></li>
<li><a href="#">Lorem Ipsum is simply dummy text of the printing.</a></li>
<li><a href="#">Sed ut perspiciatis unde omnis iste natus error sit voluptatem.</a></li>
</ul>
</div>
</div>
<!-- // Privacy -->
<!--footer section start-->
<footer>
<div class="w3-agileits-footer-top">
<div class="container">
<div class="wthree-foo-grids">
<div class="col-md-3 wthree-footer-grid">
<h4 class="footer-head">Mission & Vision</h4>
<p>In the open source world, there are countless treasures waiting for us to discover, OS-Q aims to integrate resources and benefit more people.</p>
</div>
<div class="col-md-3 wthree-footer-grid">
<h4 class="footer-head">Associated</h4>
<ul>
<li><a href="http://www.soc.xin"><i class="fa fa-external-link" aria-hidden="true"></i>www.SoC.Xin</a></li>
<li><a href="http://stop.stops.top"><i class="fa fa-external-link" aria-hidden="true"></i>stop.stops.top</a></li>
<li><a href="http://www.tfzoo.com"><i class="fa fa-external-link" aria-hidden="true"></i>www.tfzoo.com</a></li>
<li><a href="http://www.zeergen.com"><i class="fa fa-external-link" aria-hidden="true"></i>www.zeergen.com</a></li>
</ul>
</div>
<div class="col-md-3 wthree-footer-grid">
<h4 class="footer-head">Information</h4>
<ul>
<li><a href="regions.html"><i class="fa fa-long-arrow-right" aria-hidden="true"></i>Locations Map</a></li>
<li><a href="terms.html"><i class="fa fa-long-arrow-right" aria-hidden="true"></i>Terms of Use</a></li>
<li><a href="licence.html"><i class="fa fa-long-arrow-right" aria-hidden="true"></i>licence search</a></li>
<li><a href="privacy.html"><i class="fa fa-long-arrow-right" aria-hidden="true"></i>Privacy Policy</a></li>
</ul>
</div>
<div class="col-md-3 wthree-footer-grid">
<h4 class="footer-head">Contact Us</h4>
<address>
<ul class="location">
<li><span class="glyphicon glyphicon-map-marker"></span></li>
<li>690 BiBo Street,PuDong,ShangHai</li>
</ul>
<div class="clearfix"> </div>
<ul class="location">
<li><span class="glyphicon glyphicon-earphone"></span></li>
<li>+086 130-2011-2031</li>
</ul>
<div class="clearfix"> </div>
<ul class="location">
<li><span class="glyphicon glyphicon-envelope"></span></li>
<li><a href="mailto:qitas@qitas.cn">qitas@qitas.cn</a></li>
</ul>
</address>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
<div class="agileits-footer-bottom text-center">
<div class="container">
<div class="w3-footer-logo">
<h1><a href="index.html"><span>OS</span>-Q</a></h1>
</div>
<div class="w3-footer-social-icons">
<ul>
<li><a class="facebook" href="#"><i class="fa fa-facebook" aria-hidden="true"></i><span>Facebook</span></a></li>
<li><a class="twitter" href="#"><i class="fa fa-twitter" aria-hidden="true"></i><span>Twitter</span></a></li>
<li><a class="flickr" href="#"><i class="fa fa-flickr" aria-hidden="true"></i><span>Flickr</span></a></li>
<li><a class="googleplus" href="#"><i class="fa fa-google-plus" aria-hidden="true"></i><span>Google+</span></a></li>
<li><a class="dribbble" href="#"><i class="fa fa-dribbble" aria-hidden="true"></i><span>Dribbble</span></a></li>
</ul>
</div>
<div class="copyrights">
<p>Copyright © 2021-2023.OS-Q All rights reserved.</p>
</div>
<div class="clearfix"></div>
</div>
</div>
</footer>
<!--footer section end-->
</body>
<!-- Navigation-JavaScript -->
<script src="js/classie.js"></script>
<script src="js/main.js"></script>
<!-- //Navigation-JavaScript -->
<!-- here stars scrolling icon -->
<script type="text/javascript">
$(document).ready(function() {
/*
var defaults = {
containerID: 'toTop', // fading element id
containerHoverID: 'toTopHover', // fading element hover id
scrollSpeed: 1200,
easingType: 'linear'
};
*/
$().UItoTop({ easingType: 'easeOutQuart' });
});
</script>
<!-- start-smoth-scrolling -->
<script type="text/javascript" src="js/move-top.js"></script>
<script type="text/javascript" src="js/easing.js"></script>
<script type="text/javascript">
jQuery(document).ready(function($) {
$(".scroll").click(function(event){
event.preventDefault();
$('html,body').animate({scrollTop:$(this.hash).offset().top},1000);
});
});
</script>
<!-- start-smoth-scrolling -->
<!-- //here ends scrolling icon -->
</html>