-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathabout.html
56 lines (52 loc) · 2.54 KB
/
about.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
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pathfinder</title>
<link rel="shortcut icon" type="image/png" href="images/favicon.jpg"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
<link rel="stylesheet" type="text/css" href="style.css">
<!-- <script src="script.js" type="text/javascript"></script> -->
</head>
<body>
<div id="pathfinder">
<div id="header">
<div id="menu">
<a class="home" href="https://pf-algo-viz.org/">Home</a>
<a class="docs" href="https://krnbatta.github.io/pathfinder/#/">Docs</a>
<a class="app" href="https://pf-algo-viz.org/app">App</a>
<a class="about" href="https://pf-algo-viz.org/about">About Us</a>
</div>
<h3>PFAlgoViz: A Debugging Visualiser for Pathfinding Search</h3>
</div>
<div id="body">
<div id="info">
<h3><u>Team</u></h3>
<ul>
<li>Dr Daniel Harabor: <a href="mailto:[email protected]">[email protected]</a></li>
<li>Dr Michael Wybrow: <a href="mailto:[email protected]">[email protected]</a></li>
<li>Karan Batta: <a href="mailto:[email protected]">[email protected]</a></li>
<li>Jay Wingate: <a href="mailto:[email protected]">[email protected]</a></li>
</ul>
<h4>Repository: <a href="https://github.com/krnbatta/pathfinder">https://github.com/krnbatta/pathfinder</a></h4>
<h4>Issue Tracker: <a href="https://github.com/krnbatta/pathfinder/issues">https://github.com/krnbatta/pathfinder/issues</a></h4>
</div>
</div>
<div id="footer">
<p class="footer-monash">
Developed at Monash University
<img width='40px' height='40px' src="https://pf-algo-viz.org/images/monash.png">
</p>
<p class="footer-credits">
<span>
Ideation & Management: <b>Dr Daniel Harabor</b>, <b>Dr Michael Wybrow</b>
</span>
<span>Architecture & Development: <b>Karan Batta</b> - <a href="https://www.linkedin.com/in/krnbatta/" target="_blank"><img class="linkedin-icon" src="icons/linkedin.svg" type="image/svg+xml" /></a> <a href="https://github.com/krnbatta/pathfinder" target="_blank"><img class="github-icon" src="icons/github.svg" type="image/svg+xml" /></a></span>
</p>
</div>
</div>
</body>
</html>