-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·28 lines (25 loc) · 1.19 KB
/
index.html
File metadata and controls
executable file
·28 lines (25 loc) · 1.19 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="../styles/styletodo.css">
<link href="https://fonts.googleapis.com/css?family=Bilbo+Swash+Caps" rel="stylesheet">
<link rel="stylesheet" href="../styles/style.css">
<title>To-Do List</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js" defer></script>
<script src="./scripts/todoList.js" defer></script>
<script src="./scripts/timer.js" defer></script>
</head>
<body>
<h1 class="welcome">Welcome to Task Timer</h1>
<div class="input">
<input type="text" class="inputTask inputCommon addTask" maxlength="50" placeholder="Enter task here..">
<input type="number" class="inputTime inputCommon addMinutes" min="0" value="5"><span class="time">min(s)</span>
<input type="number" class="inputTime inputCommon addSeconds" min="0" max="59" value="0"><span class="time">sec(s)   </span>
<button type="button" class="addButton">Add Task</button>
</div>
<!-- Below is space for timer -->
<div class="timer"></div>
<!-- Below is space for task list -->
<div class="list"></div>
</body>
</html>