Codigo HTML:
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="estilo.css">
<title>Plantas primitivas</title>
</head>
<body>
<header>
<h1>Clase Pteridophytas</h1>
</header>
<main>
<h2>Helechos Arboreos</h2>
<p>
Los helecho proliferaron abundantemente durante el periodo carbonífero donde alcanzaron dimensiones gigantescas sobre los 30 m de altura, estas plantas primitivas anteriores a los dinosaurios han dado origen a los yacimientos actuales de carbón y petróleo.
</p>
<img src="helechos_1.gif" alt="imagen de helecho arboreo">
<h3>Algunas especies existentes en el presente son:</h3>
<ol>
<li>Sphaeropteris quindiuensis</li>
<li>Dicksonia berteriana</li>
<li>Blechnum magellanicum</li>
</ol>
</main>
<footer>
<p>Sitio realizado por:RPM</p>
<p><a href="https://www.github.com/">Github</a></p>
</footer>
</body>
</html>
Código CSS:
main {
background-color: greenyellow;
color: brown;
}
header {
background: aquamarine;
color: indigo;
}
footer {
background-color: gainsboro;
color: cadetblue;
}
a {
color: indigo;
}