-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathassistente.html
More file actions
35 lines (34 loc) · 851 Bytes
/
assistente.html
File metadata and controls
35 lines (34 loc) · 851 Bytes
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styleA.css" />
<title>Assitente Virtual</title>
</head>
<header>
<a href="index.html"><</a>
<h1>IAgro</h1>
<a href="Editar.html">
<p>EDIT</p>
</a>
</header>
<body>
<div id="geral">
<div id="flor">
<img src="assets/iconflower.png" alt="flor">
</div>
<section class="content">
<textarea
id="result"
disabled
placeholder="Resposta da Assitente"
></textarea><br>
<textarea id="inputQuestion" placeholder="Pergunte algo"></textarea>
</section>
</div>
<script src="assitente_script.js"></script>
</body>
<footer>
</footer>
</html>