-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbio.html
58 lines (52 loc) · 1.74 KB
/
bio.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
<!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="estilo.css">
<title>Princess Hilda</title>
</head>
<body>
<div id="principal">
<img src="img/capa.png" alt="capa">
<div id="menu">
<a href="index.html">HOME</a> |
<a href="bio.html">BIOGRAFIA</a> |
<a href="publi.html">CAMPANHAS PUBLICITÁRIAS</a> |
<a href="contact.html">CONTATO</a>
</div>
<div class="conteudo">
<h1>Biografia</h1>
<table id="tab-bio">
<tbody>
<tr>
<th>Title(s)</th>
<td>Princess of Lorule</td>
</tr>
<tr>
<th>Race</th>
<td>Lorulean</td>
</tr>
<tr>
<th>Gender</th>
<td>Female</td>
</tr>
<tr>
<th>Appearance(s)</th>
<td>A Link Between Worlds</td>
<td>Super Smash Bros. Ultimate</td>
</tr>
<tr>
<th>Counterpart(s)</th>
<td>Princess Zelda (Hyrulean)</td>
</tr>
</tbody>
</table>
</div> <!-- fim conteúdo -->
<footer class="centralizar">
<h4>Todos os direitos reservados</h4>
</footer>
</div> <!-- fim principal -->
</body>
</html>