-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (64 loc) · 3.47 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Algorithm Visualizer</title>
<link rel="stylesheet" href="Project.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.min.js" integrity="sha384-cuYeSxntonz0PPNlHhBs68uyIAVpIIOZZ5JqeqvYYIcEL727kskC66kF92t6Xl2V" crossorigin="anonymous"></script>
</head>
<body>
<nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-primary">
<strong><a class="navbar-brand" href="./index.html">
Algo Viz
</a></strong>
<button class="navbar-toggler" 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" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link text-white" href="./bubble.html">Bubble</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="./selection.html">Selection</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="./insertion.html">Insertion</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="./merge.html">Merge</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="./quick.html">Quick</a>
</li>
<li class="nav-item">
<a class="nav-link text-white" href="./heap.html">Heap</a>
</li>
</ul>
</div>
</nav>
<div class="container-fluid">
<div class="row">
<div id="section-home" class="col-12">
<div class="page">
<h1 class="heading">Algorithm Visualizer</h1>
<h2 class="home-subheading">Algorithm</h2>
<p class="home-text">An algorithm is a procedure used for solving a problem or performing a computation.
Algorithms act as an exact list of instructions that conduct specified actions step
by step in either hardware or software based routines.
</p>
<p class="home-text">Algorithms can be expressed as natural languages, programming languages, pseudocode,
flowcharts and control tables. Natural language expressions are rare, as they are more ambiguous.
Programming languages are normally used for expressing algorithms executed by a computer.
</p>
<h2 class="home-subheading">Algorithm Visualizer</h2>
<p class="home-text">Algorithm Visualizer is a web application that visualizes algorithms in a simple and easy to understand way.
It is a tool that helps you to understand how algorithms work and how they can be implemented in code.
</p>
</div>
</div>
</div>
</div>
</body>
</html>