forked from gustavodepaula-daw/E01-HTML
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgabarito.html
More file actions
51 lines (50 loc) · 857 Bytes
/
gabarito.html
File metadata and controls
51 lines (50 loc) · 857 Bytes
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
<!DOCTYPE html>
<html lang="en">
<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>Gabarito prova</title>
<style>
table, tr, td{
border: 1px solid black;
padding: 2px;
}
tr{
height: 40px;
}
td{
min-width: 40px;
}
</style>
</head>
<table>
<body>
<h1>Gabarito prova</h1>
<p></p>
<tr>
<td>1°</td>
<td>A) Respiração celular</td>
</tr>
<p></p>
<tr>
<td>2°</td>
<td>A) Bombear sangue</td>
</tr>
<p></p>
<tr>
<td>3°</td>
<td>A) Propicia o fluxo gênico</td>
</tr>
<p></p>
<tr>
<td>4°</td>
<td>A) Aumento do número de estames</td>
</tr>
<tr>
<td>5°</td>
<td>D) Os linfócitos T</td>
</tr>
</body>
</html>
</table>