-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (49 loc) · 1.89 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
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="style.css">
<title>Analog Clock</title>
</head>
<body>
<div class="container">
<h1 id="header">📅 Task Manager</h1>
<div class="clock">
<div class="outer-clock-face">
<div class="marking marking-one"></div>
<div class="marking marking-two"></div>
<div class="marking marking-three"></div>
<div class="marking marking-four"></div>
</div>
<div class="inner-clock-face">
<div class="hand hour-hand"></div>
<div class="hand min-hand"></div>
<div class="hand second-hand"></div>
<span style="--n:1">1</span>
<span style="--n:2">2</span>
<span style="--n:3">3</span>
<span style="--n:4">4</span>
<span style="--n:5">5</span>
<span style="--n:6">6</span>
<span style="--n:7">7</span>
<span style="--n:8">8</span>
<span style="--n:9">9</span>
<span style="--n:10">10</span>
<span style="--n:11">11</span>
<span style="--n:12">12</span>
</div>
</div>
<div class="task-container">
<h2 id="taskheader">⏰ Task List</h2>
<input type="text" id="taskInput" placeholder="What is the task?">
<input type="time" id="timeInput">
<button id="add" onclick="addTask()">Add</button>
<div class="tasklist">
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>