-
Notifications
You must be signed in to change notification settings - Fork 0
/
EX06.html
40 lines (37 loc) · 1.34 KB
/
EX06.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
40
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Calculos - Media de nota</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
<script type="text/javascript" src="js/script.js"></script>
</head>
<body>
<header>
<nav>
<ul>
<li><a class="Linkmenu" href="index.html">Home<a/></li>
<li><a class="Linkmenu" href="EX01.html">Antecessor e Sucessor<a/></li>
<li><a class="Linkmenu" href="EX02.html">Calculo de Desconto<a/></li>
<li><a class="Linkmenu" href="EX03.html">Divisão<a/></li>
<li><a class="Linkmenu" href="EX04.html">Lucros e Impostos<a/></li>
<li><a class="Linkmenu" href="EX05.html">Calculo de IMC<a/></li>
<li><a class="Linkmenu" href="EX06.html">Média da Nota<a/></li>
<li><a class="Linkmenu" href="EX07.html">Calculo de Nota<a/></li>
<ul/>
</nav>
</header>
<div class='calculocaixa'>
<p>Primeira nota:<input type="text" id="txtValor1"></p>
<p>Segunda nota:<input type="text" id="txtValor2"></p>
<p><input type="button" id="btnCalcular" value="Calcular" onclick="nota()"></p>
<p><span id="lblResultado"></span></p>
</div>
<footer>
<div class="footerlower">
<p id='pFooter'>© 2021 - Alisson Ramos</p>
</div>
</footer>
</body>
</html>