-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.html
48 lines (41 loc) · 1.69 KB
/
todo.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ToDoList</title>
<!-- CSS -->
<link rel="stylesheet" href="clock.css">
</head>
<body>
<div class="wrapper">
<div class="todo-title">
<h1>00:00</h1> <!--시계출력-->
</div>
<div class="todo-container">
<div class="input-form">
<button class="complete-all-btn">✔︎</button>
<input type="text" class="todo-input" placeholder="할 일을 입력하세요!">
<button class="enter">⏎</button>
</div>
<ul class="todo-list">
</ul>
<div class="todo-bottom">
<div class="todo-bottom">
<div class="left-items">🥕 오늘 할 일이 0개 남았습니다 🥕</div>
<div class="btn-group">
<button class="show-all-btn selected" id="all">모두 보기</button>
<button class="show-active-btn" id="active">남은 일</button>
<button class="show-completed-btn" id="completed">끝낸 일</button>
<button class="clear-all-btn" id="clear">모두 지우기</button>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="clock.js"></script>
<!-- 시계를 구현하는 자바스크립트 파일을 새로이 또 추가한다. 항상 나누어서 작업하면 깔끔하고 충돌도 덜
일어난다. 이러한 작업태도를 'divde and concour' 라고 한다. -->
</body>