-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchatbot.html
More file actions
54 lines (50 loc) · 1.86 KB
/
chatbot.html
File metadata and controls
54 lines (50 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="icon" href="images/python.ico" />
<title>Espython</title>
<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=Inter:wght@100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<div class="left">
<img src="images/python.svg" alt="logo de python" />
<h1>Espython</h1>
</div>
<div class="right">
<a href="index.html">Home</a>
<a href="about.html">Acerca de</a>
<a href="chatbot.html">Chatbot</a>
</div>
</header>
<main>
<div class="chat">
<iframe
src="https://webchat.botframework.com/embed/Espy-bot-bot?s=ze8LY6-eJCc.M-rI_iS96HggaEvtap98lONXj2tHHrKpfIUTeSFbaio"
></iframe>
</div>
</main>
<footer>
<p>© Espy 2024</p>
<div class="footer-links">
<a target="blank" href="https://www.youtube.com/@EspySoftware">
<img src="images/youtube.svg" alt="youtube" />
</a>
<a
target="blank"
href="https://github.com/dannasndz/Web_Bot_Espy"
>
<img src="images/github.svg" alt="github" />
</a>
</div>
</footer>
</body>
</html>