As someone who is new to coding, I could really use some assistance with a problem I've encountered. Specifically, I'm attempting to reference an image within a div element, but unfortunately it's not displaying when I check through my browser.
I've been following a tutorial on this topic which can be found here: http://www.youtube.com/watch?v=j4kTLpezHDI&list=PL52E0F0A024E913AE.
CSS:
.banner {
background: url(../img/city-bg.jpg) no-repeat;
width: 695px;
height: 271px;
}
HTML:
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Black + White</title>
<link rel="stylesheet" type="text/css" "style.css">
</head>
<body>
<div class="container_12">
<header>
<h1>Black + White</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Our Services</a></li>
<li><a href="#">How We Work</a></li>
<li><a href="#">Testimonials</a></li>
<li><a href="#">Work Examples</a></li></ul>
</nav>
<div class="banner grid_10">
<p>Some slick phrase would go in here to sum up what the business actually does and stands for.</p>
</div>
<div class="grid_2"></div>
</header>
<div class="main">
<div class="grid_5">
<h1>Services we offer</h1>
<p>"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<p> Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."</p>
<p><a href="#" class="button">Read more</a></p>
</div>
<div class="grid_5">
<h1>How we work</h1>
<p>"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<p> Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."</p>
<p><a href="#" class="button">Read more</a></p>
</div>
<div class="grid_2">
<blockquote>
<p>Clean, elegant typography
matched with sharp lines
and precise spacing leads
to a professional look
and feel</p>
</blockquote>
</div>
</div>
<footer><p><strong>black+white themes via </strong><a href="http://themeforest.net">Themeforest</a></p></footer>
</div>
</body>
</html>