Background image for specific <div> only (not working)

hey so I’m trying to get a background image for a div using just html and css but its not working. Can some one please take a look and tell me what i’m missing? I’ve checked other threads here and in stack overflow and tried the solutions presented there without any change. I feel like i’m not understanding something about the image link.
Your help is appreciated

css:

#landing-page {
  background-image: url ('http://imgur.com/WZrn9nl');
}

html:
<div class="container-fluid">
  <div class="white-text landing-page" id="landing-page">
    <h1>Krystena Lee</h1>
    <h2>Front End Web Developer</h2>

  </div>

code pen link:

It doesn’t work because your link for the background image does not link an image file.

If you go to the link, you can find its actual link for the image file: http://i.imgur.com/WZrn9nl.jpg

If you use that link, it’ll work :slight_smile::+1:

For more information on CSS background image: Background Image CSS - MDN

[quote="arry14, post:2, topic:127697"]
`http://i.imgur.com/WZrn9nl.jpg`
[/quote]

I dropped that link in the CSS but it still didn’t show up.

YES!!! thanks for that mozzila link! I got it!!!