Skip to content

Commit 609aee3

Browse files
committed
Added some readme and changed some ui
1 parent 113466d commit 609aee3

File tree

2 files changed

+26
-13
lines changed

2 files changed

+26
-13
lines changed

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
11
# algorithm-visualizer
22

3-
# <a href="https://bappy4u.github.io/algorithm-visualizer/">Live Demo</a>
3+
# <a href="https://bappy4u.github.io/algorithm-visualizer/">Live Link</a>
4+
5+
<h3>So far I've implemented two Sorting Algorithm only.</h3>
6+
7+
<ol>
8+
<li><h3>Bubble Sort</h3></li>
9+
<li><h3>Selection Sort</h3></li>
10+
11+
</ol>

index.html

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,30 +4,35 @@
44
<meta charset="UTF-8" />
55
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Sorting Visualizer</title>
7+
<meta
8+
name="description"
9+
content="Sorting algorithm visualizer using D3js. It will help you to understand the algorithm. I've used swapping animation for clear understanding of the algorithm."
10+
/>
11+
<title>Sorting Algorithm Visualizer | Najmul H. Bappy</title>
812
<link rel="stylesheet" href="style.css" />
913
</head>
1014
<body>
1115
<p class="sound"><a id="sound" href="#">Sound 🎵</a></p>
12-
<h1>Sorting Visualizer</h1>
16+
<h1>Sorting Algorithm Visualizer</h1>
1317
<button id="random-data">Generate Random Data</button>
1418
<div class="radio">
1519
<form action="">
16-
<label
17-
><input
20+
<label>
21+
<label
22+
><input
23+
type="radio"
24+
name="algo-name"
25+
value="bubble-sort"
26+
checked
27+
/>Bubble Sort</label
28+
>
29+
<input
1830
type="radio"
1931
name="algo-name"
2032
value="selection-sort"
2133
/>Selection Sort</label
2234
>
23-
<label
24-
><input
25-
type="radio"
26-
name="algo-name"
27-
value="bubble-sort"
28-
checked
29-
/>Bubble Sort</label
30-
>
35+
3136
<br />
3237
<br />
3338
<label>

0 commit comments

Comments
 (0)