-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
72 lines (70 loc) · 3.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Roboto+Mono:wght@300;400;500;600;700&family=Rubik:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./css/home.css" />
<link rel="stylesheet" href="./css/nav.css" />
<title>Document</title>
</head>
<body>
<nav class="nav-container">
<!-- <h3>Streamlen</h3>
<a href="">Github</a> -->
</nav>
<main>
<h2>
👋 Hey there, We're excited to share our project - an algorithm
visualizer! 🎉 Whether you're a computer science student or a curious
tech enthusiast, this tool is perfect for anyone who wants to learn more
about how algorithms work. With our visualizer, you can watch in
real-time as sorting algorithms like Bubble Sort and Quick Sort
rearrange elements in an array 📊 or as searching algorithms like Binary
Search and Linear Search find elements in a sorted list 🔍 But that's
not all! 🤩 You can also customize the size of the array and the speed
of the algorithm, and even visualize multiple algorithms at once to
compare their performance. Plus, with a sleek and user-friendly
interface, you'll have a blast experimenting and learning with our
algorithm visualizer. So what are you waiting for? Give it a spin and
see for yourself how cool algorithms can be! 🤓💻
</h2>
<section class="section-container">
<div class="sorting">
<div class="sort-head">Sorting</div>
<hr />
<a href="./Sorting/sorting.html" class="li-items">Bubble Sort</a>
<a href="./Sorting/sorting.html" class="li-items">Insertion Sort</a>
<a href="./Sorting/sorting.html" class="li-items">Selection Sort</a>
<a href="./Sorting/sorting.html" title="coming soon" class="li-items deactive">Count Sort</a>
<a href="./Sorting/sorting.html" title="coming soon" class="li-items deactive">Radix Sort</a>
<a href="./Sorting/sorting.html" title="coming soon" class="li-items deactive">Merge Sort</a>
<a href="./Sorting/sorting.html" title="coming soon" class="li-items deactive">Quick Sort</a>
</div>
<div class="tree">
<div class="tree-head">Tree</div>
<hr />
<a href="./QuadTree in Javascript/index.html" class="li-items">QuadTree</a>
<a title="coming soon" class="li-items deactive">Binary Search Tree</a>
<a title="coming soon" class="li-items deactive">Splay Tree</a>
<a title="coming soon" class="li-items deactive">Avl Tree</a>
<a title="coming soon" class="li-items deactive">B Tree</a>
<a title="coming soon" class="li-items deactive">B+ Tree</a>
</div>
<div class="searching">
<div class="search-head">Searching</div>
<hr />
<a title="coming soon" class="li-items deactive">Linear Search</a>
<a title="coming soon" class="li-items deactive">Binary Search</a>
</div>
</section>
</main>
<script src="./js/nav.js"></script>
</body>
</html>