forked from Malik04121/Clockify_clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtracker.html
62 lines (60 loc) · 1.5 KB
/
tracker.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
62
<!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">
<title>Tracker</title>
<link rel="stylesheet" href="./styles/tracker.css">
</head>
<body>
<div id="navTop">
<div>
<i class="fa-solid fa-bars"></i>
<img onclick="goTo()"
src="https://clockify.me/assets/images/clockify-logo.svg"
alt="err"
/>
</div>
<div>
<p id="name"></p>
<button>UPGRADE</button>
<img
src="https://app.clockify.me/assets/nav-icons/notification.svg"
alt="err"
/>
</div>
</div>
<div id="input">
<div id="iTop">
<input type="text" placeholder="What are You Working on?" id="enter" />
<img
src="https://app.clockify.me/assets/ui-icons/plus-blue.svg"
alt="err"
/>
<p>Project</p>
</div>
<div id="iBot">
<div>
<img
src="https://app.clockify.me/assets/ui-icons/tag-gray.svg"
alt="err"
/>
</div>
<div>
<img
src="https://app.clockify.me/assets/ui-icons/play.svg"
alt="err"
/>
</div>
<div>
<div id="timer">00:00:00</div>
<button onclick="clickStart()">START</button>
<button onclick="clickStop()" id="add">STOP</button>
</div>
</div>
</div>
<div id="container"></div>
</body>
</html>
<script src="./scripts/tracker.js"></script>