-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (34 loc) · 1.49 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
<!doctype html>
<html lang="jp">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hedgehog's dilemma web</title>
<!-- OGP Meta Tags -->
<meta property="og:title" content="Hedgehog's dilemma web">
<meta property="og:type" content="website">
<meta property="og:url" content="https://hedgehog.tomoshi.biz/">
<meta property="og:image" content="https://cdn.tomoshi.biz/img/ogp/hedgehog.webp">
<meta property="og:description" content="Hedgehog's dilemma をwebで再現しました。CPUと対戦できます。">
<meta property="og:site_name" content="Hedgehog's dilemma web">
<meta property="og:locale" content="ja_JP">
<!-- Twitter Card Meta Tags (Optional) -->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@to_moshibi">
<meta name="twitter:title" content="Hedgehog's dilemma web">
<meta name="twitter:description" content="Hedgehog's dilemma をwebで再現しました。CPUと対戦できます。">
<!-- Other Meta Tags -->
<meta name="description" content="VRChatのちはるーむ様にあるボードゲーム、Hedgehog's dilemma をwebで再現しました。CPUと対戦できます。">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
<style>
html {
display: grid;
place-content: center;
}
</style>
</html>