https://i.sstatic.net/mlfLX.jpg
This is my very first attempt at an HTML project and I am having trouble applying a background image to the #nheader id. When I try to toggle the code, the browser gives me an error message saying it cannot load the image. I'm not sure what the reason could be?
<html>
<!--this is the start of
the html file-->
<head>
<meta keywords="html, learn, teach"/>
<link rel="stylesheet" type="text/css" href="style.css">
<title> This is a website </title>
</head>
<body>
<div id="wrap">
<div id="nheader">
<h1>How to Write HTML5</h1>
<img src="../my demo/images/body.jpg">
</div>
<div id="npara">
<p class="text_para">
Lorem ipsum dolor sit amet, <span class="color">consectetur</span> adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad
</p>
</div>
<div id="footer">
<p class="text_para">
This is the footer
</p>
</div>
</div>
</body>
<!--here ends the html file -->
</html>