How can I make my page centered?
I already tried it with center-block
but it does not focus when I show it in the browser
File index.html
/* FILE: main.css */
body {
background-color: black;
color: white;
}
img {
max-width: 100%;
}
.quitar-float {
float: none;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet1" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.csss">
<link rel="stylesheet" href="css/main.css">
<title> Fenrris Clothing </title>
</head>
<body>
<div class="col-md-5 center-block quitar-float text-center">
<img src="./imagenes/l.png">
<h1>Fenrris Clothing </h1>
<p>Conoce el nuevo estilo </p>
<nav>
<a href=""> Inicio </a>
<a href=""> Playeras </a>
<a href=""> Contacto </a>
</nav>
</div>
</body>
</html>