-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (38 loc) · 1.52 KB
/
index.html
File metadata and controls
41 lines (38 loc) · 1.52 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
36
37
38
39
40
41
<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">Sorting Collection</span>
</section>
<section class="mdc-top-app-bar__section mdc-top-app-bar__section--align-end">
<a href="pages/quicksort.html" class="mdc-theme--on-secondary mdc-button mdc-button--raised">
<span class="mdc-button__ripple"></span>
QuickSort
</a>
<a href="pages/mergesort.html" class="mdc-theme--on-secondary mdc-button mdc-button--raised">
<span class="mdc-button__ripple"></span>
MergeSort
</a>
<a href="pages/bubblesort.html" class="mdc-theme--on-secondary mdc-button mdc-button--raised">
<span class="mdc-button__ripple"></span>
BubbleSort
</a>
</section>
</div>
</header>
<div class="mdc-top-app-bar--fixed-adjust">
<p class="intro-text">Please select a sorting algorithm</p>
</div>
</body>
</html>