19 lines
547 B
HTML
19 lines
547 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset='utf-8'>
|
|
<meta name='viewport' content='width=device-width,initial-scale=1'>
|
|
|
|
<title>Drum Slayer</title>
|
|
|
|
<link rel="manifest" href="/manifest.webmanifest">
|
|
<link rel="icon" href="/favicon.ico" sizes="32x32">
|
|
<!--<link rel="icon" href="/icon.svg" type="image/svg+xml">-->
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
|
|
<body>
|
|
<div id="app"></div>
|
|
<div id="dropdowns"></div>
|
|
<script type="module" src='/src/main.ts'></script>
|
|
</body>
|
|
</html>
|