diff --git a/natureza/extincoes/extincoes.html b/natureza/extincoes/extincoes.html
index 5d66111..a51f85c 100644
--- a/natureza/extincoes/extincoes.html
+++ b/natureza/extincoes/extincoes.html
@@ -1,8 +1,13 @@
-
EXTINCOES
+
Extinções
+
@@ -15,25 +20,31 @@
| Baleia-azul |
- 4 |
+ 12000 |
| Onça-pintada |
- 2 |
+ 20000 |
| Lobo-guará |
- 7 |
+ 24000 |
| Mico-leão-dourado |
- 1 |
+ 15000 |
| Panda-gigante |
- 9 |
+ 2537 |
+
diff --git a/natureza/extincoes/style.css b/natureza/extincoes/style.css
index c3cf116..36c53f1 100644
--- a/natureza/extincoes/style.css
+++ b/natureza/extincoes/style.css
@@ -1,3 +1,43 @@
+html {
+ font-family: Arial, Helvetica, sans-serif;
+}
+
+.header {
+ overflow: hidden;
+ background-color: #f1f1f1;
+ padding: 20px 10px;
+}
+
+.header a {
+ float: left;
+ color: black;
+ text-align: center;
+ padding: 12px;
+ text-decoration: none;
+ font-size: 18px;
+ line-height: 25px;
+}
+
+.header a:hover {
+ background-color: #ddd;
+ color: black;
+}
+
+.header a.active {
+ background-color: dodgerblue;
+ color: white;
+}
+
+footer {
+ position: fixed;
+ width: 100%;
+ display: block;
+ padding: 12px;
+ bottom: 0;
+ margin-right: 8px;
+ background-color: #f1f1f1;
+}
+
table {
border-collapse: collapse;
width: 100%;
diff --git a/natureza/parques/parques-naturais.html b/natureza/parques/parques-naturais.html
index 5849789..e440d86 100644
--- a/natureza/parques/parques-naturais.html
+++ b/natureza/parques/parques-naturais.html
@@ -1,38 +1,49 @@
-
+
Parques Naturais
+
-
+
| Nome |
- Area em m2 |
+ Área em km2 |
- | Baleia-azul |
- 4 |
+ Parque Nacional da Chapada Diamantina |
+ 1520 |
- | Onca-pintada |
- 2 |
+ Parque Nacional Montanhas de Tumucumaque |
+ 38874 |
- | Lobo-guara |
- 7 |
+ Parque Nacional da Tijuca |
+ 39,58 |
- | Mico-leao-dourado |
- 1 |
+ Parque Nacional dos Lençóis Maranhenses |
+ 1566,84 |
- | Panda-gigante |
- 9 |
+ Parque Nacional da Chapada dos Veadeiros |
+ 2405,9 |
+
diff --git a/natureza/parques/style.css b/natureza/parques/style.css
new file mode 100644
index 0000000..36c53f1
--- /dev/null
+++ b/natureza/parques/style.css
@@ -0,0 +1,62 @@
+html {
+ font-family: Arial, Helvetica, sans-serif;
+}
+
+.header {
+ overflow: hidden;
+ background-color: #f1f1f1;
+ padding: 20px 10px;
+}
+
+.header a {
+ float: left;
+ color: black;
+ text-align: center;
+ padding: 12px;
+ text-decoration: none;
+ font-size: 18px;
+ line-height: 25px;
+}
+
+.header a:hover {
+ background-color: #ddd;
+ color: black;
+}
+
+.header a.active {
+ background-color: dodgerblue;
+ color: white;
+}
+
+footer {
+ position: fixed;
+ width: 100%;
+ display: block;
+ padding: 12px;
+ bottom: 0;
+ margin-right: 8px;
+ background-color: #f1f1f1;
+}
+
+table {
+ border-collapse: collapse;
+ width: 100%;
+}
+
+th, td {
+ padding: 15px;
+ text-align: left;
+}
+
+thead {
+ background-color: #04AA6D;
+ color: white;
+}
+
+tbody tr:nth-child(odd) {
+ background-color: #f2f2f2;
+}
+
+tbody tr:hover {
+ background: #01cf00;
+}