forked from JohnImril/diablo_web_simple
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (52 loc) · 2.44 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="theme-color" content="#000000" />
<title>Play Diablo Anywhere: Classic Game Web App</title>
<meta
name="description"
content="Experience the classic Diablo game directly in your browser. Play Diablo anywhere with our modern web-based port. Get started now!"
/>
<meta
name="keywords"
content="Diablo, Diablo Web, classic game, browser game, web app, play Diablo online, Diablo for browser"
/>
<meta name="robots" content="index, follow" />
<meta name="author" content="John Imril" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://johnimril.github.io/diablo_web_simple/" />
<meta property="og:title" content="Play Diablo Anywhere: Classic Game Web App" />
<meta
property="og:description"
content="Experience the classic Diablo game directly in your browser. Play Diablo anywhere with our modern web-based port."
/>
<meta property="og:image" content="./og-image.png" />
<meta property="x:card" content="summary_large_image" />
<meta property="x:url" content="https://johnimril.github.io/diablo_web_simple/" />
<meta property="x:title" content="Play Diablo Anywhere: Classic Game Web App" />
<meta
property="x:description"
content="Experience the classic Diablo game directly in your browser. Play Diablo anywhere with our modern web-based port."
/>
<meta property="x:image" content="./x-image.png" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="apple-mobile-web-app-title" content="Diablo Web App" />
<link rel="apple-touch-icon" href="./apple-touch-icon.png" />
<link rel="manifest" href="./manifest.json" />
<link rel="icon" type="image/svg+xml" href="./favicon.ico" />
<link rel="icon" sizes="192x192" href="./icon-192.png" />
<link rel="icon" sizes="512x512" href="./icon-512.png" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="Content-Language" content="en" />
<meta name="msapplication-TileColor" content="#000000" />
<meta name="msapplication-TileImage" content="./mstile-150.png" />
<meta name="format-detection" content="telephone=no" />
</head>
<body>
<div id="root"></div>
<script type="module" src="./src/main.tsx"></script>
</body>
</html>