-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
33 lines (28 loc) · 898 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<!--
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'">
-->
<link rel="stylesheet" href="./node_modules/sweetalert2/dist/sweetalert2.css" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="header">
<button class="delete-all">
<span class="icon icon-delete-all"></span>
</button>
<button class="minimize">
<span class="icon icon-minimize"></span>
</button>
<button class="exit">
<span class="icon icon-exit"></span>
</button>
</div>
<div id="items"></div>
<script src="./renderer.js"></script>
</body>
</html>