-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (53 loc) · 2.22 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/styles.css">
<title>original_ver2</title>
</head>
<body>
<header>
<img src="img/tomato_red.png" alt="トマト" class="tomato">
</header>
<main>
<div class="container">
<h1 id="js_clock"></h1>
<div class="pomodoro">
<h2>This is pomodoro-timer</h2>
<div id="js-rest-popup" class="popup">
<p>お疲れ様でした。</p>
<p id="js-total-time"></p>
<div class="btn-flex">
<button id="js-rest-btn" class="popup-btn" type="button">休憩</button>
<button id="js-finish-btn" class="popup-btn" type="button">終了</button>
</div>
</div>
<div id="js-restart-popup" class="popup">
<p>休憩おしまいです<br />頑張りましょう。</p>
<div class="btn-flex-center">
<button id="js-restart-btn" class="popup-btn" type="button">再開</button>
</div>
</div>
<div id="js-count-timer" class="count-timer"></div>
<p id="js-comment">始めましょう。</p>
<button id="js-start" class="timer-btn start-btn" type="button">Start</button>
<button id="js-stop" class="timer-btn stop-btn" type="button">Stop</button>
<button id="js-reset" class="timer-btn reset-btn" type="button">Reset</button>
</div>
<div class="TODO">
<h2>This is TODO list</h2>
<form action="">
<input id="js_task_value" type="text" placeholder="タスクを入力して下さい">
<button id="js_task_submit" type="button">Add Task</button>
</form>
<h3>Current Tasks</h3>
<div class="table">
<ul id="js_task_list"></ul>
</div>
</div>
</div>
</main>
</body>
<script src="js/main.js"></script>
</html>