-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmy-zone.html
More file actions
28 lines (28 loc) · 774 Bytes
/
my-zone.html
File metadata and controls
28 lines (28 loc) · 774 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="my-zone.css">
</head>
<body>
<h1>This is my zone.</h1>
<p> I keep all my data here because I own it.</p>
<div id="app">
<section id="img-zone">
<h3>Collected images</h3>
<ul></ul>
<button class="save-collection">save meeee</button>
</section>
<section id="text-zone">
<h3>Collected text</h3>
<ul class="text-list"></ul>
<button class="save-collection">save meeee</button>
</section>
</div>
</body>
<script src="deps/idb-file-storage.js"></script>
<script src="utils/blob.js"></script>
<script src="utils/store.js"></script>
<script src="data-zone.js"></script>
<script src="my-zone.js"></script>
</html>