-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (44 loc) · 1.67 KB
/
Copy pathindex.html
File metadata and controls
50 lines (44 loc) · 1.67 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!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" />
<meta
name="description"
content="Vibrate is the latest and most advanced music player available today. With its sleek design, powerful sound quality, and easy-to-use interface, our app is perfect for anyone who wants to enjoy their music on the go."
/>
<meta
name="keywords"
content="Vibrate, Music Player (Progressive Web App)"
/>
<!-- necessary for PWA -->
<meta name="theme-color" content="#0a0d17" />
<link rel="apple-touch-icon" href="./favicon.png" />
<link rel="manifest" href="./manifest.json" />
<meta name="author" content="Su Myat Aung" />
<title>Vibrate | Music Player</title>
<!--css link -->
<link rel="stylesheet" href="./src//css//style.css" />
<!-- favicon -->
<link rel="shortcut icon" href="./favicon.png" type="image/x-icon" />
<!-- fontsawrsome kit -->
<script src="https://kit.fontawesome.com/92b53f8263.js" crossorigin="anonymous"></script>
</head>
<body class="bg-main">
<div id="root"></div>
<!-- src to join with react -->
<script type="module" src="./src/main.jsx"></script>
<!-- to register SW -->
<script>
if ("serviceWorker" in navigator) {
window.addEventListener("load", () => {
navigator.serviceWorker
.register("./serviceworker.js")
.then((reg) => console.log("Success: ", reg.scope))
.catch((err) => console.log("Failure: ", err));
});
}
</script>
</body>
</html>