-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
36 lines (33 loc) · 1.11 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>ChatBot</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/botui/build/botui.min.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/botui/build/botui-theme-default.css"
/>
<link rel="stylesheet" href="./chatbot style/botui.scss" />
<link rel="stylesheet" href="./chatbot style/default.scss" />
<link rel="stylesheet" href="./chatbot style/normal.scss" />
<link rel="stylesheet" href="./chatbot style/botui-theme-default.css" />
</head>
<body>
<div class="botui-app-container" id="hello-world">
<bot-ui></bot-ui>
</div>
<script src="https://www.gstatic.com/firebasejs/6.0.2/firebase.js"></script>
<script src="https://cdn.jsdelivr.net/vue/latest/vue.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/botui/build/botui.js"></script>
<script src="Chatbase.js"></script>
<script src="index.js"></script>
</body>
</html>