-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (42 loc) · 1.8 KB
/
index.html
File metadata and controls
45 lines (42 loc) · 1.8 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
42
43
44
45
<html>
<head>
<!-- Material Design Lite -->
<script src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script src="app.js"></script>
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.teal-indigo.min.css">
<!-- Material Design icon font -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" type="text/css">
<link rel="stylesheet" href="main.css">
<title>Selection Sort Demo</title>
<link rel="icon" href="https://amuhs.github.io/img/icon.png">
</head>
<body>
<h2>Selection Sort Demo</h2>
<div class="upfront-info">
<!-- Raised button with ripple -->
<button class="start mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect">
Start
</button>
<button class="start-disabled hidden mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect" disabled>
Start
</button>
<button class="step mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect">
Step
</button>
<button class="step-disabled hidden mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect" disabled>
Step
</button>
<button class="reset mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect">
Reset
</button>
</div>
<div class="tiles"></div>
<div class="temp-tile"></div>
<div class="footer docs-text-styling">
<p>Built by <a href="https://amuhs.github.io">Andrew Muhs.</a>
Made using <a href="https://getmdl.io/index.html">Material Design Lite</a> by Google.</p>
</div>
</body>
</html>