-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (66 loc) · 2.64 KB
/
Copy pathindex.html
File metadata and controls
71 lines (66 loc) · 2.64 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Q+rate - 실시간 설문조사 분석 플랫폼</title>
<meta
name="description"
content="Q+rate로 설문조사를 쉽게 생성하고 실시간으로 결과를 시각화하세요. 막대차트, 파이차트, 워드클라우드로 데이터를 분석하고 인사이트를 얻으세요. 템플릿 제공으로 빠른 설문 생성이 가능합니다."
/>
<meta
name="keywords"
content="설문조사, 데이터 시각화, 설문 분석, 차트, 워드클라우드"
/>
<meta name="last-modified" content="2024-12-19" />
<!-- Open Graph -->
<meta property="og:title" content="Q+rate - 실시간 설문조사 분석 플랫폼" />
<meta
property="og:description"
content="설문조사를 쉽게 생성하고 실시간으로 결과를 시각화하는 도구입니다."
/>
<meta property="og:type" content="website" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Q+rate" />
<meta
name="twitter:description"
content="설문조사를 쉽게 생성하고 실시간으로 결과를 시각화하세요."
/>
<!-- Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "Q+rate",
"description": "설문조사 생성 및 실시간 데이터 시각화 도구",
"applicationCategory": "BusinessApplication",
"operatingSystem": "Web Browser"
}
</script>
<!-- FontAwesome -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"
/>
<!-- Remix Icon -->
<link
href="https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css"
rel="stylesheet"
/>
<!-- Google Fonts -->
<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=Pacifico&family=Pretendard:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<!-- Kakao SDK -->
<script src="https://developers.kakao.com/sdk/js/kakao.js"></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>