-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 1.19 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://rachelssang.github.io/pair-programming-2/" />
<meta property="og:title" content="Vanilla Trello" />
<meta
property="og:image"
content="https://user-images.githubusercontent.com/70943835/211463232-5e69c8d7-0383-47c8-be20-576f7fb546ee.svg" />
<meta property="og:description" content="Vanilla JavaScript만을 사용하여 구현한 Trello" />
<meta property="og:site_name" content="Vanilla Trello" />
<meta property="og:locale" content="ko_KR" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<title>Vanilla Trello</title>
<link rel="icon" href="./assets/trello-tile.svg" />
<link href="./style.css" rel="stylesheet" />
<script src="https://unpkg.com/[email protected]/dist/boxicons.js"></script>
<script type="module" src="index.js"></script>
</head>
<body>
<div id="root"></div>
</body>
</html>