-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (40 loc) · 1.62 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
<!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="stylesheet" href="./styles/main_style.css">
<title>Algorithm visualizer</title>
</head>
<body>
<!--TODO: make "cards" to choose which kind of algoritm we want visualize-->
<!--Planning on making: path-finding and binary trees (AVL tree maybe?)-->
<div class="container-wrapper">
<div class="cards-container">
<div class="algorithm-card">
<img src="./assets/sorting_static.png" width="262px" height="max" object-fit="cover">
<!--Visualizer name-->
<div class="card-title">
<h2><a href="./visualizer_sites/sorting_algorithms.html">Sorting algorithms</a></h2>
</div>
</div>
<div class="algorithm-card">
<img src="./assets/binarytree-static.png" width="262px" height="auto">
<div class="card-title">
<h2><a href="visualizer_sites/binary_trees.html">Binary trees</a></h2>
</div>
</div>
<div class="algorithm-card">
<!--Picture / gif-->
<img src="./assets/placeholder.png" width="262px" height="auto">
<!--Visualizer name-->
<div class="card-title">
<h2><a href="./index.html">Path finding</a></h2>
</div>
</div>
</div>
</div>
<script src="scripts/index.js"></script>
</body>
</html>