-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
28 lines (28 loc) · 925 Bytes
/
home.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
<!DOCTYPE html>
<html>
<head>
<title> Algorithm</title>
<link rel="stylesheet" type="text/css" href="stylehome.css">
</head>
<body>
<header>
<div class ="main">
<div class="logo">
<img src="logo.png">
</div>
<ul>
<li class="active"><a href="sa/index.html" >Sorting Visualiser</a></li>
<li><a href="Path-Finding-Visualizer/index.html">Path Finding Visualiser</a></li>
</ul>
</div>
<div class="title">
<h1>SORTING AND PATH FINDING VISUALIZER</h1>
</div>
<img src="Ashraf.png" class="center" width="600" height="400">
<div class="button">
<a href="sorting%20algo.html" class="btn">SORTING ALGORITHM</a>
<a href="https://www.baeldung.com/cs/prim-dijkstra-difference" class="btn">PATHFINDING ALGORITHM</a>
</div>
</header>
</body>
</html>