I am trying to display a background image in a <section> in my html using css. I am hosting locally using XAMPP and the URL is coming from my Imgur account. When I run my code, the background image does not appear. Any ideas why the image won't show?
.bigslide {
background-image: url("https://imgur.com/haukzXN");
background-repeat: no-repeat;
background-size: cover;
height: 500px;
width: 700px;
}
<nav class="nav">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#page1">Services</a></li>
<li><a href="#page2">About Us</a></li>
<li><a href="#page3">Contact</a></li>
<li><a href="#social">Social</a></li>
</ul>
</nav>
</header>
<body>
<div id="start">
<h1>DT Professional Carpet Cleaning and Hanyman Service.</h1>
<section class="bigslide">
</section>
</div>
bigslidesome height.