-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (32 loc) · 1.42 KB
/
index.html
File metadata and controls
43 lines (32 loc) · 1.42 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
<!DOCTYPE html>
<html lang="fr-en">
<head>
<meta charset="utf-8">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="style.css">
<meta property="og:title" content="To Do"/>
<meta property="og:image" content="https://virnatwo.github.io/To-Do/image.jpg"/>
<meta property="og:url" content="https://virnatwo.github.io/To-Do/"/>
<meta name="theme-color" content="#6d00b6"/>
<title>El List</title>
</head>
<body onload="init()">
<div class="windowDrag">
<div class="windowDragHeader btn"></div>
<button class="btn del unselectable" onclick="ToggleSetting()">X</button><br><br>
<div class="unselectable">
<input type="file" accept="application/json" name="fileUploadImport" id="fileUploadImport" class="fileUpload" style="display: none;"/>
<label for="fileUploadImport" class="btn">Import</label>
<button class="btn" onclick="Export()">Export</button>
</div><br>
<div class="unselectable">
<button class="btn" onclick="RemoveAll()">Remove All</button>
</div>
</div>
<input type="text" id="addvalue" class="btn" name="addtolist" autocomplete="true" autofocus="true" placeholder="Text">
<button id="addvalidebtn" class="btn">Add</button>
<button id="settingbtn" class="btn">Setting</button>
<dt id="list"></dt>
<script src="script.js"></script>
</body>
</html>