-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
33 lines (28 loc) · 1 KB
/
index.php
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://code.jquery.com/jquery-1.9.1.js"></script>
<script src="https://unpkg.com/@phosphor-icons/web"></script>
<link rel="icon" href="View/icon.svg" type="image/svg+xml">
<link rel="stylesheet" href="View/style.css">
<script src="main.js"></script>
<title>ChatBot</title>
</head>
<body>
<div id="box">
<h1>ChatBot</h1>
<hr>
<div id="chat">
<div id="chat-area"></div>
<p id="resposta">Olá! Eu sou o sistema MAAM. Por favor, digite sua pergunta ou 'Tchau' para encerrar a nossa conversa.</p>
<br>
<input type=" text" id="pergunta" placeholder="Digite sua pergunta...">
<button id="perguntar" title="Enviar">
<i class="ph ph-play"></i>
</button>
</div>
</div>
</body>
</html>