-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (22 loc) · 882 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
<!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">
<title>Algocular</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="index.css" type="text/css">
</head>
<body>
<section class = "header">Algocular</section>
<table style="width:90%" align="center" cellpadding="45px">
<tr>
<td><a href="bubble_sort.html" border="0"><img src="bubble.png"></a> </td>
<td><a href="selection_sort.html" border="0"><img src="selection.png"></a> </td>
<td><a href="insertion_sort.html" border="0"><img src="insertion.png"></a> </td>
</tr>
</table>
<script src="index.js"></script>
</body>
</html>