Browse Source

Primeira parte da tela de parques-naturais

master
higor 3 years ago
parent
commit
6fdce852e0
3 changed files with 82 additions and 5 deletions
  1. +6
    -5
      index.html
  2. +38
    -0
      natureza/extincoes/extincoes.html
  3. +38
    -0
      natureza/parques/parques-naturais.html

+ 6
- 5
index.html View File

@ -10,9 +10,10 @@
</div> </div>
</head> </head>
<body> <body>
<h1>Navegacao de Paginas</h1>
</body>
<footer>
<p>Autor: Higor</p>
</footer>
<h1>Navegacao de Paginas</h1>
<a href="natureza/extincoes/extincoes.html"><button>Extincoes</button></a>
</body>
<footer>
<p>Autor: Higor</p>
</footer>
</html> </html>

+ 38
- 0
natureza/extincoes/extincoes.html View File

@ -0,0 +1,38 @@
<!DOCTYPE html>
<html>
<head>
<title>EXTINCOES</title>
</head>
<body>
<table cellspacing="5" cellpadding="10" border="2">
<thead>
<tr>
<th>Nome</th>
<th>Quantidade</th>
</tr>
</thead>
<tbody>
<tr>
<th>Baleia-azul</th>
<td>4</td>
</tr>
<tr>
<th>Onca-pintada</th>
<td>2</td>
</tr>
<tr>
<th>Lobo-guara</th>
<td>7</td>
</tr>
<tr>
<th>Mico-leao-dourado</th>
<td>1</td>
</tr>
<tr>
<th>Panda-gigante</th>
<td>9</td>
</tr>
</tbody>
</table>
</body>
</html>

+ 38
- 0
natureza/parques/parques-naturais.html View File

@ -0,0 +1,38 @@
<!DOCTYPE html>
<html>
<head>
<title>Parques Naturais</title>
</head>
<body>
<table cellspacing="5" cellpadding="10" border="2">
<thead>
<tr>
<th>Nome</th>
<th>Area em m2</th>
</tr>
</thead>
<tbody>
<tr>
<th>Baleia-azul</th>
<td>4</td>
</tr>
<tr>
<th>Onca-pintada</th>
<td>2</td>
</tr>
<tr>
<th>Lobo-guara</th>
<td>7</td>
</tr>
<tr>
<th>Mico-leao-dourado</th>
<td>1</td>
</tr>
<tr>
<th>Panda-gigante</th>
<td>9</td>
</tr>
</tbody>
</table>
</body>
</html>

Loading…
Cancel
Save