-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (27 loc) · 1.04 KB
/
Copy pathindex.html
File metadata and controls
30 lines (27 loc) · 1.04 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Nosso primeiro JS</title>
<link rel="stylesheet" href="css.css">
<script src="java.js" defer></script>
<noscript>Este site só funciona com JavaScript ativado!</noscript>
</head>
<body>
<section id="Formulario">
<form onsubmit="return false;">
<button type="button" onclick="alert('Opa! tudo bem?')">Me clique!</button>
<fieldset>
<label>Informe seu peso (kg):</label>
<input type="text" id="ps" name="peso"/><br>
<label>Informe sua altura (cm):</label>
<input type="text" id="al" name="altura"/>
<span>em centímetros</span><br>
<button type="button" onclick="calcImc()">Calcular!!!</button>
</fieldset>
<button onclick="Tema()">Tema Claro/Escuro</button>
</form>
</section>
</body>
</html>