-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotas.html
More file actions
42 lines (41 loc) · 1.33 KB
/
Copy pathnotas.html
File metadata and controls
42 lines (41 loc) · 1.33 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
31
32
33
34
35
36
37
38
39
40
41
42
<html>
<meta charset="UTF-8">
<head>
<title>Exericio 51</title>
<link rel="stylesheet" href="estilo.css">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<div class="anterior">
<div class="principal">
<h2 align="center">Notas:</h2>
<table width="300" align="center">
<tr>
<td width="40%"> Nome:</td>
<td><input type="text" id="nome"></td>
</tr>
<tr>
<td>Nota trabalho:</td>
<td><input type="number" id="trab"></td>
</tr>
<tr>
<td>Nota teste:</td>
<td><input type="number" id="teste"></td>
</tr>
<tr>
<td></td>
<td><button type="button" onclick="calcula()">Calcula Nota Final</td>
</tr>
<tr>
<td>Resultado:</td>
<td><input type="text" id="res" readonly></td>
</tr>
<tr>
<td></td>
<td></button><button type="button" onclick="cl()">Limpa</button></td>
</tr>
</table>
</div>
</div>
</body>
</html>