review: Styling the “wildlife” div with Background Properties task1 (using background-image:url...)

Create a new rule that targets the class 'wildlife'. Set the bear.jpg image, located in the img folder, as the background image.


/* Complete the challenge by writing CSS below */


 .wildlife {

   background-image: url('img/bear.jpg');

 }


Html:

<!DOCTYPE html>

<html>

  <head>

    <title>Lake Tahoe</title>

    <link rel="stylesheet" href="page.css">

    <link rel="stylesheet" href="style.css">

  </head>

  <body> 

<div class="primary-content t-border">

<p class="intro">

Lake Tahoe is one of the most breathtaking attractions located in California. It's home to a number of ski resorts, summer outdoor recreation, and tourist attractions. Snow and skiing are a significant part of the area's reputation.

</p>

<a class="callout" href="#more">Find out more</a>

      <div class="wildlife">

        <h2>Check out all the Wildlife</h2>

        <p>

          As spawning season approaches, the fish acquire a humpback and protuberant jaw. After spawning, they die and their carcasses provide a feast for gatherings of <a href="#mink">mink</a>, <a href="#bears">bears</a>, and <a href="#eagles">bald eagles</a>.

        </p>

      </div><!-- End .wildlife -->

<a class="callout" href="#wildlife">See the Wildlife</a>

</div><!-- End .primary-content -->

  </body>

</html>

Comments

Popular posts from this blog

how to code a weather forecast web

What Build Tools Do JavaScript Developers Use?

WordPress Theme Development From Scratch - 3. Enqueuing CSS and JS to W...

how to use :focus

unit3.online registration form tricks: input field box align right and placeholder text right, but input text left.

how to screenshot a drop down menu on mac

Numbers in JavaScript introduction