Hi, I am trying to add backgroung-image to body of a webpage. Its working on inline way but noy through css. I tried everything even searched on google. But I don't want where I am making mistake.
<!doctype HTML>
<html>
<head>
<title>Buttons</title>
<link rel = "stylesheet" type = "text/css" href = "assets/stylesheet.css" />
</head>
<body>
</body>
</html>
And here is CSS:
body {
background-image: url("images/p3.jpg");
}
I also tried:
body {
background: url(images/p3.jpg);
}
But not working!