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 Personal Profile Page

Daniel Oviedo
Daniel Oviedo
2,812 Points

Submit Project

I'm trying to submit my project and it will say "does not contain any files". I added my project to my github account and still would show the same thing. Does any body have any suggestions please?

Do you have any link to it or what are you doing?

Petya Katsarova
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Petya Katsarova
Front End Web Development Techdegree Graduate 21,342 Points

Hi Daniel, I hope you found the solution. Could you, please let me know how actually you started the project: where do you have the html, css and images files together and work on them. I got an answer that is not workspaces but do not know another way to connect and work from there. thank you, Petra Stefanova

2 Answers

Daniel Oviedo
Daniel Oviedo
2,812 Points

Hi Petra,

Go to the instructions and scroll down to the video. On the right hand side of the screen you can find the project files ready to download, where it says "download files" just hit the arrow. Let me know if you can find them.

Petya Katsarova
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Petya Katsarova
Front End Web Development Techdegree Graduate 21,342 Points

Daniel, you did not answer my question: i asked how to connect on one page the css, html and the images, i did download the zipped project documents but they are in seperate documents..

Daniel Oviedo
Daniel Oviedo
2,812 Points

So sorry about that Petra. I misunderstood your question.

To connect the style.css page to the index.html page, go to the index.html page and open a link tag below the meta tag located below the title tag and link css page as follows:

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

To display you background image on you page, go the style.css page and add the image under the header selector as follows:

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

Then, the profile image you can just add it directly on your index.html. Go to the header element and open an img tag and type it as follows:

<img src="images/profile_img.jpg" alt="My bikes" class="profile-image">

Remember the edit the alt attribute according to the description of the selected picture.

Let me know if this helps.