I have a problem, I started 0 page and I wrote the html code with the css but when I open it in the chrome I do not see anything. Only white I leave below the html and the css:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html" />
<meta charset="utf-8">
<link reel="stylesheet" href="estilo.css" type="text/css"/>
<title> NIAGARA </title>
</head>
<body>
<header id="cabecera">
</header>
<section id="contenido">
</section>
<footer id="pie">
</footer>
</body>
</html>
style.css
body {
background-color: white;
margin: 0px;
}
#cabecera {
background-color: blue;
width: 960px;
height: 200px;
margin-left: auto;
margin-right: auto;
}
#contenido {
background-color: red;
width: 960px;
height: 500px;
margin-right: auto;
margin-left: auto;
}
#pie {
background-color: green;
width: 960px;
height: 100px;
margin-right: auto;
margin-left: auto;
}
Maybe I wrote something wrong, I'm studying, but I never had any errors and I do not see any in the syntax. I understand that it may be something else that makes my page look blank but I do not know what. I also tried to open it from the localhost with xampp although I have not added php yet but the same thing appears to me. AIUDA.