-
Notifications
You must be signed in to change notification settings - Fork 20
/
index.html
27 lines (27 loc) · 1011 Bytes
/
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
<!DOCTYPE html>
<html lang="en" translate="no">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/logo.svg" type="image/svg+xml" />
<link rel="manifest" href="/manifest.json" />
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('/sw.js', { scope: '/' }).catch(console.warn);
}
</script>
<meta name="theme-color" content="#ffa500"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<base href="" />
<title>AllKaraoke.Party - Free Online Karaoke Party Game</title>
<meta
name="description"
content="100% Free online SingStar-like Karaoke party game - 3,700+ songs and counting! No download needed, just use your phone or a regular/SingStar mic to sing" />
<script>
var global = window; // Some scripts rely on `global` which is node-only
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>