-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (22 loc) · 855 Bytes
/
index.html
File metadata and controls
23 lines (22 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Bloom Filter</title>
<link rel="stylesheet" type="text/css" href="src/style.css"/>
<script src="lib/d3.v3.js"></script>
<script src="src/bloomFilter.js"></script>
</head>
<body>
<section class="controls">
<input id="m" type="text" placeholder="m" name="m">
<input id="k" type="text" placeholder="k" name="k">
<button id="regenerate" type="button">Regenerate</button>
<input id="item" type="text" placeholder="item" name="item">
<button id="add" type="button">Add</button>
<button id="contains" type="button">Contains</button>
</section>
<div class="container"></div>
</body>
<script src="src/script.js"></script>
</html>