-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaula5.html
39 lines (24 loc) · 807 Bytes
/
aula5.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<h3>HTML COM JAVASCRIPT</h3>
<input type="text" placeholder="Informe seu bairro" id="bairro">
<input type="text" placeholder="Número de cachorros" id="numero">
<button onclick="Clique()">Análise Pet</button>
<div id="inf"></div>
<script>
function Clique() {
var bairro = document.getElementById ("bairro").value;
var numero = document.getElementById ("numero").value;
var div = document.getElementById ("inf");
div.innerText = `André mora em ${bairro} e tem ${numero} cachorros`;
};
</script>
</body>
</html>