forked from param-code/counter-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.17 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="https://www.svgrepo.com/show/123948/timer.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="A simple timer application to track time efficiently." />
<meta name="keywords" content="timer, stopwatch, time tracking" />
<title>Counter App</title>
<!-- <link rel="stylesheet" href="preloaderStyle.css"> -->
</head>
<body>
<!-- preloader -->
<!-- <div id="preloader">
<div class="wrapper">
<div class="box-wrap">
<div class="box one"></div>
<div class="box two"></div>
<div class="box three"></div>
<div class="box four"></div>
<div class="box five"></div>
<div class="box six"></div>
</div>
</div>
</div> -->
<div id="root"></div>
<!-- <script src="preloader.js"></script> -->
<script>
window.onload = function() {
window.scrollTo(0, 0); // Always scroll to top on reload
};
</script>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>