-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
40 lines (35 loc) · 1.24 KB
/
index.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, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Média de Notas</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header><h1>Média das Notas dos Alunos</h1></header>
<section>
<!-- Elements que recebem as notas dos alunos -->
<div id="entradaValores">
<p>Nota:
<input type="text" id="entradaNota">
<button id="btnAdicionar" onclick="adicionar()">Adicionar</button>
</p>
<p></p>
<select name="notasInseridas" id="notasInseridas" size="10"></select>
</div>
<!-- Espaço para o cálculo da média -->
<div>
<p><button id="btnMedia" onclick="calcMedia()">Calcular Média</button></p>
<p id="media"> A média é: </p>
</div>
</section>
<section id="informacao">
<div id="logoInformacao" onclick="informacao()"><p id="spanInformacao">i</p></div>
<p id="pInformacao"></p>
</section>
<footer><p id="footer">© Rafael Marchesin</p></footer>
<script src="script.js"></script>
</body>
</html>