-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (23 loc) · 788 Bytes
/
index.html
File metadata and controls
23 lines (23 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8">
<title>Algorithm Visualizer</title>
<link rel="stylesheet" href="src/styles/index.css" type="text/css" />
<link rel="stylesheet" href="src/styles/pathfinding.css" type="text/css" />
</head>
<body>
<div class="header">
<h1>Algorithm Visualizer</h1>
<h6>See How Algorithms Work</h6>
</div>
<div class="contain" style="padding-top: 100px">
<a href="pathfinding.html">
<p><span class="bg"></span><span class="base"></span><span class="text">Pathfinding</span></p>
</a>
<a href="sorting.html">
<p><span class="bg"></span><span class="base"></span><span class="text">Sorting</span></p>
</a>
</div>
</body>
</html>