-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathchatbot.html
executable file
·54 lines (52 loc) · 1.14 KB
/
chatbot.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
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>Chatbot</title>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<header
class="header"
style="
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
color: #fff;
background-color: #000;
padding: 10px;
"
>
<img
src="./accesories/service_to_man_kind-20200709-0001.jpg"
alt="Logo"
class="logo"
style="width: 50px"
/>
STM Chatbot
</header>
<div
class="chat-container"
style="
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
"
>
<div style="height: 600px; width: 400px">
<iframe
src="https://ora.ai/embed/8bbf0956-37d9-4412-b256-c2f300c3aad0"
width="100%"
height="100%"
style="border: 0; borderradius: 4px"
/>
</div>
</div>
</body>
</html>