-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.html
30 lines (30 loc) · 986 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Sort algorithms</title>
<link rel=stylesheet type="text/css" href="style.css">
</head>
<body>
<div id="panel">
<div id="right">
<div id="caption">
Sort algorithms
</div>
<div id="buttons">
<a class="button" id="btReset" href="javascript://">Reset</a>
<a class="button" id="btBubble" href="javascript://">Bubble sort</a>
<a class="button" id="btInser" href="javascript://">insertionsort</a>
<a class="button" id="btHeap" href="javascript://">Heapsort</a>
<a class="button" id="btSelec" href="javascript://">Selectionsort</a>
<a class="button" id="btQuick" href="javascript://">Quicksort</a>
</div>
</div>
<div id="left">
<table id="sortPanel"></table>
</div>
</div>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>