How do I put an image to the bottom of my site? It's not working.
HTML
<!DOCTYPE html>
<html>
<head>
<title> Praticando #1 </title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="estilos.css" />
</head>
<body>
<div class="fundo1"> Café.com </div>
</body>
</html>
CASCADE STYLE
body{
background-image: url ("///F:/projeto/bistro.png");
background-repeat: no-repeat;
}