-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (25 loc) · 1009 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>SimplestToDo</title>
<script src="./js/index.js" type="module"></script>
<link rel="icon" href="./img/icons/simplest.png" type="image/x-icon">
<link rel="shortcut icon" href="./img/icons/simplest.png" type="image/x-icon">
</head>
<body>
<div style="position: fixed; right:0; bottom:0;"><a href="https://www.flaticon.com/free-icons/easy-to-use" title="easy to use icons"> <img src="./img/icons/simplest.png" alt="simplest_icon" width="32px" title="Easy to use icons created by Freepik - Flaticon"></a></div>
<div class="flex-container">
<div class="lefContainer">
<div id="newToDoFromHere"></div>
<div id="searchHere"></div>
<div id="filtersHere"></div>
<div id="toDoListHere"></div>
</div>
<div class="rightContainer" style="border:1px solid green">
<div id="toDoTimeLineHere"></div>
<div id="seeDependenciesHere"></div>
</div>
</div>
</body>
</html>