-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
42 lines (39 loc) · 1.61 KB
/
example.html
File metadata and controls
42 lines (39 loc) · 1.61 KB
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>사이트 제목</title>
<base href="/{PROJECT}/" />
<!-- Project Site일 때만. User Site면 제거. -->
<!-- Favicon -->
<link rel="icon" href="favicon.ico" sizes="any" />
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png" />
<link rel="apple-touch-icon" href="apple-touch-icon.png" />
<meta name="theme-color" content="#ffffff" />
<!-- Open Graph + Twitter -->
<meta property="og:type" content="website" />
<meta property="og:site_name" content="사이트 이름" />
<meta property="og:title" content="페이지 제목" />
<meta property="og:description" content="설명..." />
<meta property="og:url" content="https://{USERNAME}.github.io/{PROJECT}/" />
<meta
property="og:image"
content="https://{USERNAME}.github.io/{PROJECT}/og-image.png"
/>
<meta property="og:locale" content="ko_KR" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="페이지 제목" />
<meta name="twitter:description" content="설명..." />
<meta
name="twitter:image"
content="https://{USERNAME}.github.io/{PROJECT}/og-image.png"
/>
<link rel="canonical" href="https://{USERNAME}.github.io/{PROJECT}/" />
</head>
<body>
<h1>Hello, GitHub Pages</h1>
<p>파비콘과 OG 태그가 연결된 최소 예시입니다.</p>
</body>
</html>