-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (32 loc) · 1.31 KB
/
index.html
File metadata and controls
35 lines (32 loc) · 1.31 KB
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
<html>
<head>
<!-- <script data-main="js/index" src="js/libs/require.min.js"></script> -->
<link rel="stylesheet" href="css/material-components-web.min.css">
<link rel="stylesheet" href="css/material.icons.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body style="margin: 0px">
<header class=" mdc-top-app-bar">
<div class="mdc-top-app-bar__row">
<section class="mdc-top-app-bar__section mdc-top-app-bar__section--align-start">
<a href="" class="mdc-theme--on-secondary mdc-button">
<span class="mdc-button__ripple"></span>
<i class="material-icons mdc-button__icon">home</i>
</a>
<span class="mdc-top-app-bar__title">Routing Collection</span>
</section>
<section class="mdc-top-app-bar__section mdc-top-app-bar__section--align-end">
<a href="pages/dijkstra.html" class="mdc-theme--on-secondary mdc-button mdc-button--raised">
<span class="mdc-button__ripple"></span>
Dijkstra
</a>
<button class="mdc-theme--on-secondary mdc-button"> <span class="mdc-button__ripple"></span>A*(NA)</button>
</section>
</div>
</header>
<div class="mdc-top-app-bar--fixed-adjust">
<p class="intro-text">Please select a routing algorithm</p>
</div>
<script src="dist/main.js"></script>
</body>
</html>