I've been trying to put an image as background, but for some reason, it doesn't work.
Below you will find my HTML
and CSS
. The name of the image is Background
and its size is 1280*720
.
The HTML
:
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="test.css">
</head>
<body >
<header>
</header>
<footer></footer>
</body>
</html>
The CSS
:
body {
background: url("C:\Users\pro tech\Desktop\site web\Nouveau dossier: background.jpeg") no-repeat;
background-size: cover;
}