-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (59 loc) · 2.14 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
59
60
61
62
63
<!DOCTYPE html>
<html lang="jp">
<head>
<meta charset="UTF-8" />
<!-- <link rel="icon" type="image/svg+xml" href="/src/favicon.svg" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <meta name="”robots”" content="”noindex”" /> -->
<meta
name="description"
content="KOANの成績データから成績情報を解析するツール"
/>
<meta property="og:site_name" content="KOAN成績チェッカー" />
<meta
property="og:url"
content="https://www.happa8.dev/KOAN-grade-analyzer/"
/>
<meta property="og:type" content="KOAN成績チェッカー" />
<meta
property="og:description"
content="KOANの成績データから成績情報を解析するツール"
/>
<meta property="og:title" content="KOAN成績チェッカー" />
<meta property="og:image" content="URL" />
<meta property="og:locale" content="ja_JP" />
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="@happa_eight" />
<meta name="twitter:creator" content="@happa_eight" />
<meta
name="twitter:description"
content="KOANの成績データから成績情報を解析するツール"
/>
<meta name="twitter:title" content="KOAN成績チェッカー" />
<meta name="twitter:image:src" content="URL" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap"
rel="stylesheet"
/>
<title>KOAN成績チェッカー</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-EFE0KDCEM0"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-EFE0KDCEM0");
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>