-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
43 lines (42 loc) · 1.46 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="tapLogo.ico" />
<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=Nanum+Gothic&display=swap"
rel="stylesheet"
/>
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="경북대학교 컴퓨터학부 학사 정보 및 AI 챗봇 서비스. 학과 관련 문의사항을 챗봇을 통해 간편하게 해결해보세요!"
/>
<meta
name="keywords"
content="경북대학교, 컴퓨터학부, 학사, 챗봇, AI, 대화형, 정보, 서비스"
/>
<meta
http-equiv="Content-Security-Policy"
content="upgrade-insecure-requests"
/>
<style>
@import url("https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap");
@font-face {
font-family: "omyu_pretty";
src: url("https://fastly.jsdelivr.net/gh/projectnoonnu/[email protected]/omyu_pretty.woff2")
format("woff2");
font-weight: normal;
font-style: normal;
}
</style>
<title>경북대학교 컴퓨터학부 챗봇</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>