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 Introduction to HTML and CSS (2016) Adding a New Web Page Linking It All Up

please explain the rectangular picture of the city on background of web page, where the coding of it?

html document, coding, CSS

2 Answers

Steven Parker
Steven Parker
229,644 Points

In "styles.css" on line 57 there is a "background" attribute applied to the "header" element. This is what displays the image of the city.

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

Thank you very much Steven!

Karina Soares
Karina Soares
1,052 Points

Thank you for sharing!