-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (27 loc) · 1.35 KB
/
index.html
File metadata and controls
34 lines (27 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en" id="window">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no, user-scalable=0" />
<meta name="theme-color" content="#0f0f0f">
<link rel="icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="/apple-touch-icon-180x180.png" sizes="180x180" />
<link rel="mask-icon" href="/mask-icon.svg" color="#0f0f0f">
<!-- font-awesome icons -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css"
integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous" />
<!-- website meta data -->
<meta name="apple-mobile-web-app-title" content="React RPG: 2e" />
<meta name="application-name" content="React RPG: 2e" />
<title>React RPG: 2e</title>
<meta name="description"
content="React RPG: 2e is an open-source turn-based RPG created from scratch using React and Redux. Explore a procedurally generated map, collect items, defeat enemies and level up your character. Now featuring DnD:5e expansion thanks to a community fork!" />
</head>
<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<div id="react-rpg"></div>
<script type="module" src="/src/index.jsx"></script>
</body>
</html>