-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
46 lines (43 loc) · 1.86 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
<!doctype html>
<html lang="en">
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta
content="Visual tool for English syntax analysis. Explore and edit sentence structures with a single click. Discover over 30 essential tags and generate tailored random sentences."
name="description"
/>
<meta content="Romantech" name="author" />
<meta
content="English, Syntax, Analyzer, Editor, Grammar, Tool, Linguistics, Parsing"
name="keywords"
/>
<!-- 웹 사이트 테마 색상; 모바일 브라우저 주소창, PWA 툴바, 아이폰 노치바 등 -->
<meta content="#1a202b" name="theme-color" />
<!-- Open Graph 기본 정보 -->
<meta content="website" property="og:type" />
<meta content="Syntax Analyzer" property="og:title" />
<meta content="영어 구문 분석기" property="og:site_name" />
<meta
content="Visual tool for English syntax analysis. Explore and edit sentence structures with a single click. Discover over 30 essential tags and generate tailored random sentences."
property="og:description"
/>
<meta content="https://syntax-analyzer.romantech.net" property="og:url" />
<meta content="https://bit.ly/3QPPIn1" property="og:image" />
<!-- 파비콘 -->
<link href="/favicon-48.png" rel="icon" sizes="48x48" type="image/png" />
<!-- iOS 에서 웹앱을 홈화면에 추가할 때 사용하는 아이콘 -->
<link
href="/icon-512.png"
rel="apple-touch-icon"
sizes="512x512"
type="image/png"
/>
<title>Syntax Analyzer</title>
</head>
<!-- 처음 로드시 하얀색 깜빡임 방지 -->
<body style="background-color: #1a202b">
<div id="root"></div>
<script src="/src/index.tsx" type="module"></script>
</body>
</html>