-
Notifications
You must be signed in to change notification settings - Fork 0
/
baskara.html
35 lines (31 loc) · 1.14 KB
/
baskara.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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>baskara</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1><strong>EQUAÇÃO DE 2º GRAU</strong></h1>
</header>
<p id="txt">
<label for="na">insira o valor de "A":</label><br>
<input type="number" name="n1" id="na"><br><br>
<label for="na">insira o valor de "B":</label><br>
<input type="number" name="n2" id="nb"><br><br>
<label for="na">insira o valor de "C":</label><br>
<input type="number" name="n3" id="nc"><br><br>
</p>
<p id="botao"><input type="button" value="calcular" onclick="calcular()"></p>
<div id="res">
</div>
<div id= "res1" style="width:290px; margin-right:10px; float:left; padding-left: 200px;"></div>
</div>
<div id="res2" style="width:290px; margin-right:10px; float:left; padding-right: 100px;"></div>>
<script src="script.js"></script>
<footer></footer>
</body>
</html>