-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtabela(ex).html
More file actions
55 lines (54 loc) · 1.19 KB
/
Copy pathtabela(ex).html
File metadata and controls
55 lines (54 loc) · 1.19 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
43
44
45
46
47
48
49
50
51
52
53
54
55
<!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">
<title>Tabela sobre as massas do sol</title>
</head>
<body>
<h3>Massas no Sistema Solar</h3>
<table border="1">
<thead>
<tr>
<th>
Componente
</th>
<th>
Massa
</th>
</tr>
</thead>
<tbody>
<tr>
<td>Sol</td>
<td>99,85%</td>
</tr>
<tr>
<td>Júpiter</td>
<td>0,10%</td>
</tr>
<tr>
<td>Demais planetas</td>
<td>0,04%</td>
</tr>
<tr>
<td>Cometas</td>
<td>0,01% (?)</td>
</tr>
<tr>
<td>Satélites e anéis</td>
<td>0,000 05%</td>
</tr>
<tr>
<td>Asteróides</td>
<td>0,000 000 2%</td>
</tr>
<tr>
<td>Meteoróides e poeira</td>
<td>0,000 000 1% (?)</td>
</tr>
</tbody>
</table>
</body>
</html>