-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsimplest.html
50 lines (37 loc) · 1.49 KB
/
simplest.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
<!DOCTYPE html>
<html>
<head>
<title>What can I build - Simplest pedals</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<link rel="shortcut icon" href="image/icon.png" type="image/png" />
<link rel="stylesheet" href="css/table.css?version=270" type="text/css" />
<style>
table, tr, th, td { border: 1px solid black; border-collapse: collapse; }
tr:hover { background-color: #ffe; }
td > div { white-space: nowrap; }
output a {
display: block;
}
</style>
<script type="text/javascript" src="depend/canvas/canvas.src.js?version=270"></script>
<script type="text/javascript" src="circuit/circuits.js?version=270"></script>
<script type="text/javascript" src="js/global.js?version=270"></script>
<script type="text/javascript" src="js/utils.js?version=270"></script>
<script type="text/javascript" src="js/simplest.js?version=270"></script>
</head>
<body>
<h3><b id="count"></b> pedal circuits sorted by simplest first.
<a href="https://github.com/dvhx/what-can-i-build">Source.</a></h3>
<table id="output">
<tr>
<th>Parts</th>
<th>Parts kind</th>
<th>Name and links</th>
</tr>
</table>
</body>
</html>