Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

HTML

Background Image in Workspaces for Index.html

I tried searching for the element in the HTML file but I cannot find the image source element for the workspace. 🤔

<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Adriel Lazarus's Profile</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="styles.css"> <link href="https://fonts.googleapis.com/css?family=Muli%7CRoboto:400,300,500,700,900" rel="stylesheet"></head> <body>

<div class="main-nav">
    <ul class="nav">
      <li class="name">Adriel Lazarus</li>
      <li><a href="#">Home</a></li>
      <li><a href="#">Experience</a></li>
      <li><a href="#">Photos</a></li>
      <li><a href="#">Contact</a></li>
    </ul>
</div>

<header>
  <img src="https://placeimg.com/1000/1000/any/grayscale" alt="Drawing of Adriel Lazarus" class="profile-image">
  <h1 class="tag name">Hello, I’m Adriel.</h1>
  <p class="tag location">My home is Boon Lay, Singapore.</p>
</header>

<main class="flex">
  <div class="card">
    <h2 class="card-title">Background</h2>
      <ul>
        <li>I’m an aspiring web designer who loves everything about the web.</li> 
        <li>I've lived in lots of different places and have worked in lots of different jobs.</li> 
          <li>I’m excited to bring my life experience to the process of building fantastic looking websites.</li>
      <li>I’ve been a professional cook and gardener and am a life-long learner who's always interested in expanding my skills.</li>
        </ul>
      <h3>A New Subsection</h3>
  </div> 

  <div class="card">
    <h2 class="card-title">Goals</h2>
    <p>I want to master the process of building web sites and increase my knowledge, skills and abilities in:</p>
    <ul class="skills">
      <li>HTML</li>
      <li>CSS</li>
      <li>JavaScript</li>
      <li>Ruby</li>
      <li>Rails</li>
    </ul>
    <p>I’d like to work for a web design firm helping clients create an impressive online presence.</p>
  </div> 

</main>
<footer>
  <ul>
    <li><a href="#" class="social twitter">Twitter</a></li>
    <li><a href="#" class="social linkedin">LinkedIn</a></li>
    <li><a href="#" class="social github">Github</a></li>
  </ul>
  <p class="copyright">Copyright 2020, Adriel Lazarus</p>
</footer>

</body> </html>

Gavin Eyquem
seal-mask
.a{fill-rule:evenodd;}techdegree
Gavin Eyquem
Front End Web Development Techdegree Student 19,077 Points

If you are wanting a background image for your entire page, then you can try this body { background-image: url(?); }

Hope that helps.

1 Answer

It's in the styles.css file:

header { text-align: center; background: url('images/portland.jpg') no-repeat top center ; background-size: cover; overflow: hidden; padding-top: 60px; }