-
Notifications
You must be signed in to change notification settings - Fork 0
/
to-do.html
54 lines (50 loc) · 2.09 KB
/
to-do.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<html>
<head>
<title>to-do list</title>
<meta charset="utf-8">
<link rel="stylesheet" href="css/to-do.css">
<link rel="stylesheet" href="css/all.css">
</head>
<body>
<div class="container">
<div class="head">
<h1>TO-DO LIST</h1>
<img src="img/Group 10.svg" alt="image">
</div>
</div>
<div class="container">
<div class="all">
<div class="notes" id="notes">
<div class="note main" id="main">
<div class="top">
<input class="mainInput" type="text" placeholder="Type a title ...">
<small>Today: 30 May, 2018</small>
</div>
<div class="bottom">
<textarea placeholder="Type a description..." class="maintxt"></textarea>
<div id="tools" class="tools">
<span class="check"><i class="fas fa-check"></i></span>
<span class="color"><i class="fas fa-palette"></i></span>
</div>
<div class="changeColor main">
<div class="white Circle main"></div>
<div class="blue Circle main"></div>
<div class="yellow Circle main"></div>
<div class="red Circle main"></div>
<div class="purple Circle main"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="footer">
<h3>Made With Love In <span>IEEE KSU SB</span></h3>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<script src="js/main.js"></script>
</body>
</html>