-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (31 loc) · 1.27 KB
/
Copy pathindex.html
File metadata and controls
37 lines (31 loc) · 1.27 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
<!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" />
<link rel="icon" href="/favicon.png" />
<title>WrittenRealms</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="”description”"
content="Written Realms is a platform for playing immersive text-based adventure games. It is a modern re-imagining of MUDs (multi-user dungeons)." />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto+Slab:400,300,100|Roboto+Mono" rel="stylesheet" />
<!-- Typekit -->
<script src="https://use.typekit.net/zcm6whn.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.3/TweenLite.min.js"></script>
<script>
try {
Typekit.load({ async: true });
} catch (e) { }
</script>
</head>
<body>
<noscript>
<strong>We're sorry but Written Realms doesn't work properly without JavaScript
enabled. Please enable it to continue.</strong>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>