-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (71 loc) · 2.07 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
<!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>Exercicio de Listas</title>
</head>
<body>
<h1>Viagens Espaciais</h1>
<p>Conheça algumas pessoas que já participaram de viagens espaciais.</p>
<ul>
<li><h3>1961–1979</h3></li>
<br />
<ul>
<li><strong>Yuri Gagarin</strong></li>
<br />
<ul>
<li><strong>País:</strong> União Sovietica</li>
<li><strong>Ano:</strong> 1961</li>
<li><strong>Nave:</strong> Vostok 1</li>
<li><strong>Fato interessante:</strong> Primeiro homem no espaço</li>
</ul>
</ul>
<br />
<ul>
<li><strong>John Glenn</strong></li>
<br />
<ul>
<li><strong>País:</strong> Estados Unidosa</li>
<li><strong>Ano:</strong> 1962</li>
<li><strong>Nave:</strong> Friendship 7</li>
<li>
<strong>Fato interessante: </strong>Primeiro norte-americano em
órbita
</li>
</ul>
</ul>
</ul>
<ul>
<li><h3>1980–1999</h3></li>
<br />
<ul>
<li><strong>Bertalim Farkas</strong></li>
<br />
<ul>
<li><strong> Pais: </strong>Hungia</li>
<li><strong>Ano:</strong> 1980</li>
<li><strong>Nave:</strong> Soyuz 36 / Salyut 6</li>
<li>
<strong>Fato interessante:</strong> Primeiro cosmonauta da Hungria.
</li>
</ul>
</ul>
<br />
<ul>
<li><strong>Yuri Malenchenko</strong></li>
<br />
<ul>
<li><strong>Pais:</strong> Rússia</li>
<li><strong>Ano:</strong> 1994</li>
<li><strong>Nave:</strong> Soyuz TM-19 / Mir</li>
<li>
<strong>Fato interessante: </strong>
Primeira pessoa a casar no espaço, em 2003. A noiva estava no Texas.
</li>
</ul>
</ul>
</ul>
</body>
</html>