-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (26 loc) · 939 Bytes
/
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chat Zeca Ensina</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="chat-container">
<div class="robot-container">
<img src="img/robot.png" alt="Robô" class="robot-img">
<h1 class="nome_robo">Zeca Ensina!</h1>
</div>
<div class="chat-box" id="chat-box">
<div class="message received">Olá! Vamos aprender matemática juntos?</div>
</div>
</div>
<div class="input-container">
<input type="text" id="user-input" placeholder="Digite sua mensagem...">
<!-- Adiciona um evento de clique ao botão para chamar a função sendMessage() -->
<button onclick="sendMessage()">Enviar</button>
</div>
<script src="script.js"></script>
</body>
</html>