This repository has been archived by the owner on Jan 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (50 loc) · 2.18 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
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<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>CountDown</title>
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous" />
<!-- Online Content -->
<link rel="icon" href="https://raw.githubusercontent.com/dependabot-pr/Static-Files/main/Assets/TimeLogo.svg" />
<link rel="stylesheet" href="https://cdn.statically.io/gh/dependabot-pr/Static-Files/main/style.css" />
<link rel="stylesheet" href="https://cdn.statically.io/gh/dependabot-pr/Static-Files/main/animation.css" />
<!-- CSS only -->
<link rel="stylesheet" href="./src/style.css" />
<!-- fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@500&display=swap" rel="stylesheet" />
</head>
<body id="thebody" class="noSelect">
<div id="ProgressBar"></div>
<div class="cont">
<div id="timeTime"></div>
<div id="timeTimeShort"></div>
</div>
<div id="timeDate"></div>
<div id="moveThis" class="pushDown100">
<div class="buttonsDiv">
<a onclick="workTimer()" class="contactButton" id="workTimer">
<i class="fa fa-code"></i>Work
</a>
<a onclick="breakTimer()" class="contactButton" id="breakTimer">
<i class="fa fa-mobile"></i>Break
</a>
<!-- <a onclick="customTimer()" class="contactButton" id="customTimer">
<i class="fa-solid fa-hourglass-empty"></i>Custom
</a> -->
<a href="https://pratikkabade.github.io/theTimeR/" class="contactButton" id="customTimer">
Open
</a>
</div>
<div id="countdown" class="countdown" onclick="restart()"></div>
</div>
<div id="moveBTN"></div>
<div id="ShowMoveBTN"></div>
</body>
<script src="./src/app.js"></script>
</html>