-
Notifications
You must be signed in to change notification settings - Fork 31
/
licensing.html
282 lines (239 loc) · 13.9 KB
/
licensing.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="terms.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<!-- Link to CSS -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/aos.css" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/swiper-bundle.min.css" />
<!-- font awesome cdn link -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- custom css link -->
<script src="https://kit.fontawesome.com/2815a7015d.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Muli:300,400,700,900" rel="stylesheet">
<!-- <link rel="stylesheet" href="fonts/icomoon/style.css"> -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-rbsA2VBKQBo1vBkn6MSmIM6GaeLDJTZf5g5c8IV1qAyyB4W5cZP4Z/et3ur3DqBs" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<!-- Swiper's CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper/swiper-bundle.min.css" />
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/jquery-ui.css">
<link rel="stylesheet" href="css/owl.carousel.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/owl.theme.default.min.css">
<link rel="stylesheet" href="css/jquery.fancybox.min.css">
<link rel="stylesheet" href="css/bootstrap-datepicker.css">
<link rel="stylesheet" href="fonts/flaticon/font/flaticon.css">
<link rel="stylesheet" href="css/aos.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="about.css">
<link href="https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700&display=swap" rel="stylesheet">
<!-- Remix Icon -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
<style>
.hover-move {
transition: transform 0.3s ease-in-out;
}
.hover-move:hover {
transform: translateX(20px);
}
#progress-container {
width: 100%;
height: 5px;
background-color: #f3f3f3;
border-radius: 5px;
overflow: hidden;
position: fixed;
top: 0;
left: 0;
z-index: 9999;
}
#progress-bar {
/* width: 0%; */
height: 100%;
background-color: rgb(219, 127, 219);
}
</style>
</head>
<body>
<div id="progress-container">
<div id="progress-bar"></div>
</div>
<script>
let lastScrollPercentage = 0; // Keep track of the last scroll percentage
function updateProgressBar() {
const scrollTop = window.scrollY; // Current scroll position
const windowHeight = document.documentElement.scrollHeight - window.innerHeight; // Total scrollable height
const scrollPercentage = (scrollTop / windowHeight) * 100; // Calculate scroll percentage
// Smoothly transition to the new percentage
const progressBar = document.getElementById('progress-bar');
// Use a linear interpolation to gradually move towards the new percentage
lastScrollPercentage += (scrollPercentage - lastScrollPercentage) * 0.1; // Adjust the smoothing factor here
progressBar.style.width = lastScrollPercentage + '%'; // Update the progress bar width
}
// Listen for the scroll event
window.addEventListener('scroll', updateProgressBar);
</script>
<body data-spy="scroll" data-target=".site-navbar-target" data-offset="72">
<div id="Loader"></div>
<div class="site-wrap">
<div class="site-mobile-menu site-navbar-target">
<div class="site-mobile-menu-header">
<div class="site-mobile-menu-close mt-3">
<span class="icon-close2 js-menu-toggle"></span>
</div>
</div>
<div class="site-mobile-menu-body"></div>
</div>
<nav class="navbar navbar-expand-lg fixed-top bg-white">
<div class="container-fluid">
<div class="flex items-center"> <img src="images/fevicon.png" class="h-6 mr-2" alt=""><a
class="navbar-brand" style="font-weight: 900 ; color:rgb(219, 127, 219);" href="/Visual-Sort/">Visual
Sort</a></div>
<button class="navbar-toggler" style=" background-color: rgb(202, 111, 202) ;color: black;"
type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon "></span>
</button>
<div class="collapse navbar-collapse justify-content-end " id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="wrapper flex_align_justify" style="background-color: rgba(219, 127, 219, 0.9);">
<div class="terms_service">
<div class="tc_item tc_head flex_align_justify">
<div class="icon flex_align_justify">
<ion-icon name="terminal-outline"></ion-icon>
</div>
<div class="text">
<h1>MIT License</h1>
<p>Welcome to Visual-sort!</p>
</div>
</div>
<div class="tc_item tc_body">
<h1>MIT License</h1><br>
<p>Copyright © 2024 Mastan Sayyad</p>
<p>Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:</p>
<p>The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.</p>
<p>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.</p>
</div>
</div>
</div>
<section class="style">
<footer class="container py py-md px px-md footer">
<div class="row d-flex justify-content-center align-items-center text-center footer-header"></div>
<div class="row mt footer-content">
<div class="col-md-4 mb-3 footer-section">
<a class="d-inline-flex align-items-center mb-2 footer-title" href="/Visual-Sort/" aria-label="Visual Sort">
Visual Sort
</a>
<div class="vs">
<ul class="list-unstyled small">
<li class="mb-2 footer-description">Visual Sort is a web-based sorting algorithm visualization tool which provides an
interactive way to visualize various sorting algorithms in action, helping users understand how
different algorithms work and their efficiency in sorting data</li>
</ul>
</div>
</div>
<div class="col-6 col-md-2 mb-3 footer-section">
<h5 class="footer-header-title">Home</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="index.html#home-section" class="nav-link p-0">Home</a></li>
<li class="nav-item mb-2"><a href="index.html#algorithm-section" class="nav-link p-0">Algorithms</a></li>
<li class="nav-item mb-2"><a href="index.html#programs-section" class="nav-link p-0">Programs</a></li>
</ul>
</div>
<div class="col-6 col-md-2 mb-3 footer-section">
<h5 class="footer-header-title">About</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="index.html#About-Us" class="nav-link p-0">About</a></li>
<li class="nav-item mb-2"><a href="contributors.html" class="nav-link p-0">Our Contributors</a></li>
</ul>
</div>
<div class="col-6 col-md-2 mb-3 footer-section">
<h5 class="footer-header-title">Support</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="index.html#faq" class="nav-link p-0">FAQs</a></li>
<li class="nav-item mb-2"><a href="contact.html" class="nav-link p-0">Contact</a></li>
</ul>
</div>
<div class="col-6 col-md-2 mb-3 footer-section">
<h5 class="footer-header-title">Legal</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a href="privacy-policy.html" class="nav-link p-0">Privacy Policy</a></li>
<li class="nav-item mb-2"><a href="Terms.html" class="nav-link p-0">Terms & Conditions</a></li>
<li class="nav-item mb-2"><a href="licensing.html" class="nav-link p-0">Licensing</a></li>
</ul>
</div>
</div>
<div id="topbtn" class="topbtn">
<a class="gotopbtn" href="#"><i class="fa-solid fa-angles-up"></i></a>
</div>
<div class="foot">
<div class="icons">
<div class="linkedin">
<a href="https://www.linkedin.com/in/mastan-sayyad-126904223/"><i class="fa-brands fa-linkedin"></i></a>
</div>
<div class="github">
<a href="https://github.com/MastanSayyad"><i class="fa-brands fa-github"></i></a>
</div>
<div class="instagram">
<a href=""><i class="fa-brands fa-instagram"></i></a>
</div>
<div class="twitter">
<a href=""><i class="fa fa-twitter"></i></a>
</div>
</div>
</div>
<div class="d-flex flex-column flex-sm-row justify-content-center py-4 my-4 border-top footer-bottom">
<p>© 2024 Visual Sort - Mastan Sayyad, Inc. All rights reserved.</p>
</div>
</footer>
</section>
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script>
var loader = document.getElementById("Loader");
window.addEventListener("load", function () {
loader.style.display = "none";
})
</script>
<a href="chatbot.html">
<div class="fixed bottom-0 right-2 chatbot-container">
<button class="chatbot-button group">
<img class="h-20" src="./images/chatbot.gif" alt="chatbot">
<span class="tooltip-text">
Welcome to Visual Sort! <br>
How can I help You? ^_^
</span>
</button>
</div>
</a>
</body>
</html>