HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Alura Store | Descargue nuestros aplicactivos y juegos</title>
<link href="./assets/css/normalize.css" rel="stylesheet">
<link href="./assets/css/reset.css" rel="stylesheet">
<link href="./assets/css/style.css" rel="stylesheet">
</head>
<body class="app">
<header class="encabezado">Encabezado
</header>
<main class="contenido">Contenido
</main>
<footer class="rodapie">Rodapie
</footer>
<script src="./assets/js/fontawesome.all.min.js"></script>
</body>
</html>
CSS
.app {
background: #f1f1f1;
font-family: Arial, Helvetica, sans-serif;
display: grid;
grid-template-areas:
"encabezado"
"contenido"
"rodapie";
grid-template-columns: auto;
grid-template-rows: 50px 100vw auto;
}
.encabezado {
background: #00cc99;
grid-area: encabezado;
}
.contenido {
background: #ff8080;
grid-area: contenido;
}
.rodapie {
background: #09f;
grid-area: rodapie;
}