-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
392 lines (367 loc) · 14 KB
/
index.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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>AlgoVis.io - Online Algorithm Visualization</title>
<meta
content="AlgoVis is an online algorithm visualization tool."
name="description"
/>
<meta content="algorithm visualization tool online" name="keywords" />
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon" />
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon" />
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet"
/>
<!-- Vendor CSS Files -->
<link
href="assets/vendor/bootstrap/css/bootstrap.min.css"
rel="stylesheet"
/>
<link href="assets/vendor/icofont/icofont.min.css" rel="stylesheet" />
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet" />
<link href="assets/vendor/venobox/venobox.css" rel="stylesheet" />
<link
href="assets/vendor/owl.carousel/assets/owl.carousel.min.css"
rel="stylesheet"
/>
<link href="assets/vendor/aos/aos.css" rel="stylesheet" />
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet" />
</head>
<body>
<!-- ======= Top Bar ======= -->
<div id="topbar" class="d-none d-lg-flex align-items-center fixed-top">
<div class="container d-flex">
<div class="contact-info mr-auto"></div>
<div class="social-links">
<a href="https://twitter.com/tobiasnoethlich" class="twitter"
><i class="icofont-twitter"></i
></a>
<a href="https://github.com/tobinatore" class="github"
><i class="icofont-github"></i
></a>
<a
href="https://www.xing.com/profile/Tobias_Noethlich/cv"
class="xing"
><i class="icofont-xing"></i
></a>
<a
href="https://www.linkedin.com/in/tobias-noethlich/"
class="linkedin"
><i class="icofont-linkedin"></i
></a>
</div>
</div>
</div>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top">
<div class="container d-flex align-items-center">
<h1 class="logo mr-auto">
<a href="index.html"><b>Algo</b>Vis.io</a>
</h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html" class="logo mr-auto"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
<nav class="nav-menu d-none d-lg-block">
<ul>
<li class="active"><a href="index.html">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#categories">Categories</a></li>
<!--<li><a href="#team">Team</a></li>
<li><a href="#contact">Contact</a></li>-->
</ul>
</nav>
<!-- .nav-menu -->
</div>
</header>
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex align-items-center">
<div
class="container position-relative"
data-aos="fade-up"
data-aos-delay="500"
>
<h1>Welcome to AlgoVis.io</h1>
<h2>Your online algorithm visualization tool.</h2>
<a href="#categories" class="btn-get-started scrollto">Get Started!</a>
</div>
</section>
<!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container">
<div class="row">
<div class="col-lg-6 order-1 order-lg-2" data-aos="fade-left">
<img src="assets/img/about.jpg" class="img-fluid" alt="" />
</div>
<div
class="col-lg-6 pt-4 pt-lg-0 order-2 order-lg-1 content"
data-aos="fade-right"
>
<h3>
Are you a visual learner looking to better understand important
algorithms?
</h3>
<p class="font-italic">
I made AlgoVis for all the people who want to learn about
algorithms, but don't feel like studying textbooks for hours
just to understand them.
</p>
<ul>
<li>
<i class="icofont-check-circled"></i> Short explanations how
the algorithms work.
</li>
<li>
<i class="icofont-check-circled"></i> Pseudocode
implementations with dynamically highlighted lines.
</li>
<li>
<i class="icofont-check-circled"></i> High quality
visualizations on all devices.
</li>
</ul>
<p>
I made sure to create visualizations with the highest degree of
interactivity. Every visualization comes with the option to test
the algorithm on your own data, be it a list of unsorted numbers
or a custom graph.
</p>
</div>
</div>
</div>
</section>
<!-- End About Section -->
<!-- ======= Why Us Section ======= -->
<section id="why-us" class="why-us">
<div class="container">
<div class="row">
<div class="col-lg-4" data-aos="fade-up">
<div class="box">
<span>01</span>
<h4>High quality visualizations</h4>
<p>
All visualizations have been coded by me, touching them up
until it's clear on first sight how an algorithm works.
</p>
</div>
</div>
<div
class="col-lg-4 mt-4 mt-lg-0"
data-aos="fade-up"
data-aos-delay="150"
>
<div class="box">
<span>02</span>
<h4>Completely free</h4>
<p>
I believe in free education. AlgoVis is and will stay free -
forever. Also there's no need to create an account. All
features are available for everyone.
</p>
</div>
</div>
<div
class="col-lg-4 mt-4 mt-lg-0"
data-aos="fade-up"
data-aos-delay="300"
>
<div class="box">
<span>03</span>
<h4>No advertisements</h4>
<p>
Ads are annoying. In fact, they're so annoying that I refrain
from having them on my site at all. I'm sure your ad-blocker
appreciates that break.
</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Why Us Section -->
<!-- ======= Services Section ======= -->
<section id="categories" class="services">
<div class="container">
<div class="section-title">
<span>Categories</span>
<h2>Categories</h2>
<p>Explore algorithms from the following categories.</p>
</div>
<div class="row">
<div
class="col-lg-4 col-md-6 d-flex align-items-stretch"
data-aos="fade-up"
>
<div class="icon-box">
<div class="icon"><i class="bx bx-sort-up"></i></div>
<h4><a href="sorting.html">Sorting</a></h4>
<p>Putting elements in the right order as fast as possible.</p>
</div>
</div>
<div
class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-md-0"
data-aos="fade-up"
data-aos-delay="150"
>
<div class="icon-box">
<div class="icon"><i class="bx bx-network-chart"></i></div>
<h4><a href="graphs.html">Graphs</a></h4>
<p>
Traversing edges and vertices, building MST's and everything
in between.
</p>
</div>
</div>
<div
class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0"
data-aos="fade-up"
data-aos-delay="300"
>
<div class="icon-box">
<div class="icon"><i class="bx bx-walk"></i></div>
<h4><a href="pathfinding.html">Pathfinding</a></h4>
<p>It's all about finding the shortest way from A to B.</p>
</div>
</div>
<div
class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4"
data-aos="fade-up"
data-aos-delay="450"
>
<div class="icon-box" hidden>
<div class="icon"><i class="bx bx-bracket"></i></div>
<h4><a href="datastructures.html">Data structures</a></h4>
<p>
Everything related to all the different ways data can be
stored.
</p>
</div>
</div>
<div
class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4"
data-aos="fade-up"
data-aos-delay="600"
>
<div class="icon-box">
<div class="icon"><i class="bx bx-bracket"></i></div>
<h4><a href="datastructures.html">Data structures</a></h4>
<p>
Everything related to all the different ways data can be
stored.
</p>
</div>
</div>
<div
class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4"
data-aos="fade-up"
data-aos-delay="750"
>
<div class="icon-box" hidden>
<div class="icon"><i class="bx bx-arch"></i></div>
<h4><a href="">Divera don</a></h4>
<p>
Modi nostrum vel laborum. Porro fugit error sit minus sapiente
sit aspernatur
</p>
</div>
</div>
</div>
</div>
</section>
<!-- End Services Section -->
</main>
<!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="footer-info">
<h3>AlgoVis.io</h3>
<strong>Feel free to hit me up on social media:</strong><br />
<div class="social-links mt-3">
<a href="https://twitter.com/tobiasnoethlich" class="twitter"
><i class="icofont-twitter"></i
></a>
<a href="https://github.com/tobinatore" class="github"
><i class="icofont-github"></i
></a>
<a
href="https://www.xing.com/profile/Tobias_Noethlich/cv"
class="xing"
><i class="icofont-xing"></i
></a>
<a
href="https://www.linkedin.com/in/tobias-noethlich/"
class="linkedin"
><i class="icofont-linkedin"></i
></a>
</div>
</div>
</div>
<div class="col-lg-2 col-md-6 footer-links"></div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li>
<i class="bx bx-chevron-right"></i> <a href="#">Home</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#about">About us</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#categories">Categories</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="#">Terms of service</a>
</li>
<li>
<i class="bx bx-chevron-right"></i>
<a href="privacypolicy.html">Privacy policy</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="container">
<div class="copyright">
© Copyright <strong><span>AlgoVis.io</span></strong
>. All Rights Reserved
</div>
<div class="credits">
<!-- All the links in the footer should remain intact. -->
<!-- You can delete the links only if you purchased the pro version. -->
<!-- Licensing information: https://bootstrapmade.com/license/ -->
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/day-multipurpose-html-template-for-free/ -->
Designed by <a href="https://bootstrapmade.com/">BootstrapMade</a>
</div>
</div>
</footer>
<!-- End Footer -->
<a href="#" class="back-to-top"><i class="icofont-simple-up"></i></a>
<div id="preloader"></div>
<!-- Vendor JS Files -->
<script src="assets/vendor/jquery/jquery.min.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/jquery.easing/jquery.easing.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/venobox/venobox.min.js"></script>
<script src="assets/vendor/owl.carousel/owl.carousel.min.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>