-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (48 loc) · 2.12 KB
/
index.html
File metadata and controls
53 lines (48 loc) · 2.12 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
46
47
48
49
50
51
52
53
<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="http://fonts.googleapis.com/css?family=Roboto:300,400,500,700" type="text/css">
<link rel="stylesheet" href="main.css">
<title>Binary Search Demo</title>
<link rel="icon" href="https://amuhs.github.io/img/icon.png">
</head>
<body>
<h2 class="mdl-typography--display-3">Binary Search Demo</h2>
<div class="upfront-info">
<!-- Simple Textfield -->
<form action="#">
<div class="mdl-textfield mdl-js-textfield">
<input class="mdl-textfield__input" type="text" id="sample1">
<label class="mdl-textfield__label" for="sample1">Search Text...</label>
</div>
</form>
<!-- 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> <!-- End of textfield and buttons-->
<div class="tiles"></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>