-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
33 lines (28 loc) · 848 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
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible"
content="ie=edge">
<meta name="Description" content="Author: John Hardy,
Emulation of the TEC-1 computer">
<title>Wicked TEC-1</title>
<link rel=preload href="./src/index.ts" as="script">
<link rel="stylesheet" href="./assets/styles.css">
<link rel="manifest" href="./manifest.json">
<link rel="shortcut icon" href="./favicon.ico">
<script>
if (!window.Reflect)
window.alert('Unsupported browser. Please use a decent browser!');
</script>
</head>
<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<div id="wicked" is="app-root"></div>
<script src="./src/index.ts"></script>
</body>
</html>