-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (28 loc) · 1.32 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
<!doctype html>
<html lang="en" style="background: hsl(47deg 100% 3%); overflow: hidden">
<head>
<meta charset="utf-8" />
<title>Web Healer</title>
<meta name="description" content="A tiny wow-inspired healer experience for the web" />
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, maximum-scale=1, viewport-fit=cover, user-scalable=no, shrink-to-fit=no">
<link href="/favicon.jpg" rel="icon" type="image/x-icon" />
<link rel=manifest href="pwa.webmanifest">
<meta name=apple-mobile-web-app-capable content=yes>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=proza-libre:400,400i,700|rubik-80s-fade:400" rel="stylesheet" />
</head>
<body>
<div class="Frame" style="opacity: 0">
<div class="Frame-splash">
<img class="Frame-splashImage" src="/assets/webhealer.webp" alt="" width="600">
<div class="Frame-menu" id="menu"></div>
</div>
<div class="Frame-game" id="webhealer" disabled></div>
</div>
<p style="position: fixed; right: 1em; bottom: 0.5em;">
<a href="https://github.com/oskarrough/webhealer" rel="noreferrer" target="_blank">source</a>
</p>
<script type="module" src="/src/main.ts" ></script>
</body>
</html>