-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (82 loc) · 2.89 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!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">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<title>Lista de Aprovação</title>
</head>
<body>
<div class="container">
<header>
<h1>Lista de aprovação</h1>
<p>Coloque as informações e saiba se foi aprovado!</p>
</header>
<main>
<section class="campos">
<div>
<label for="nm">
1° Nome
</label>
<input type="text" name="nome" id="nm">
</div>
<div>
<label for="n1">
Nota 1
</label>
<input type="number" name="nota1" id="n1">
</div>
<div>
<label for="n2">
Nota 2
</label>
<input type="text" name="nota2" id="n2">
</div>
<div>
<label for="n3">
Nota 3
</label>
<input type="text" name="nota3" id="n3">
</div>
<div class="campos_btn">
<button id="btn-add">Adicionar</button>
</div>
</section>
<section id="lista">
<table>
<thead>
<tr>
<th>Nome</th>
<th>n1</th>
<th>n2</th>
<th>n3</th>
<th>Media</th>
<th>Situação</th>
</tr>
</thead>
<tbody id='corpo-tabela'>
<!-- <tr id="dadosTb">
<td>Allan</td>
<td>10</td>
<td>9</td>
<td>8</td>
<td>9</td>
<td>Aprovado</td>
<td><input id ='btn-e' type="button" value=""><input id='btn-r' type="button" value=""></td>
</tr> -->
</tbody>
</table>
</section>
</main>
<footer>
<p class="copyright"> © Copyright Allan Machado Sobral - 2022  
<a target="_blank" href="https://www.linkedin.com/in/allanmsobral/">⚡Linkedin</a> 
<a target="_blank" href="https://github.com/almasob">♥ Git Hub</a>
</p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>