-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (30 loc) · 1.5 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta content="Customizable Tic-Tac-Toe game built with React" name="description" />
<meta content="Romantech" name="author" />
<meta content="Game, TicTacToe, Tic-Tac-Toe" name="keywords" />
<!-- 웹 사이트 테마 색상; 모바일 브라우저 주소창, PWA 툴바, 아이폰 노치바 등 -->
<meta content="#1E293B" name="theme-color" />
<!-- Open Graph 기본 정보 -->
<meta content="website" property="og:type" />
<meta content="Tic-Tac-Toe" property="og:title" />
<meta content="Tic-Tac-Toe" property="og:site_name" />
<meta content="Customizable Tic-Tac-Toe game built with React" property="og:description" />
<meta content="https://tictactoe.romantech.net" property="og:url" />
<meta content="https://bit.ly/enhanced-tic-tac-toe" property="og:image" />
<!-- 파비콘 -->
<link href="/favicon.png" rel="icon" sizes="512x512" type="image/png" />
<!-- iOS 에서 웹앱을 홈화면에 추가할 때 사용하는 아이콘 -->
<link href="/icon-512.png" rel="apple-touch-icon" sizes="512x512" type="image/png" />
<link href="/manifest.json" rel="manifest" />
<title>Tic-Tac-Toe</title>
</head>
<!-- 처음 로드시 하얀색 깜빡임 방지 -->
<body style="background-color: #1e293b">
<div id="root"></div>
<script src="/src/main.tsx" type="module"></script>
</body>
</html>