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 How to Make a Website Adding Pages to a Website Add a New Page

Im a doing this right ? for some reson there white space on both sides of the header

Im trying to continue the steps but im stuck on this one

https://teamtreehouse.com/workspaces/21227262

indext version <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Georgy Simelus Web Designer</title> <link rel="stylesheet" href="css/normalize.css"> <link href="https://fonts.googleapis.com/css?family=Changa+One|Open+Sans" rel="stylesheet"> <link rel="stylesheet" href="css/main.css"> </head> <div id="wrapper"> <body> <header> <a href="index.html" id="logo"> <h1>Georgy Simelus</h1> <h2>Web devloper</h2> </a> <nav> <ul> <li><a href="index.html" class="selected"> Portafilo</a></li> <li><a href="About.html">About</a></li> <li><a href="Contact.htmlz">Contact</a></li> </ul> </nav> </header> <div id="wrapper"> <section> <ul id="gallery"> <li> <a href="img/numbers-01.jpg"> <img src="img/numbers-01.jpg" alt=""> <p>Expermation with color and texture.</p> </a> </li> <li> <a href="img/numbers-02.jpg"> <img src="img/numbers-02.jpg" alt=""> <p>Playing with blending modes in Photosh.</p> </a> </li> <li> <a href="img/numbers-06.jpg"> <img src="img/numbers-06.jpg" alt=""> <p>Tryig to create an 80s style of glows.</p> </a> </li> <li> <a href="img/numbers-09.jpg"> <img src="img/numbers-09.jpg" alt=""> <p>Drips created using Photoshop brushes.</p> </a> </li> <li> <a href="img/numbers-12.jpg"> <img src="img/numbers-12.jpg" alt=""> <p>Creating shapes using repetition./p> </a> </li> </ul> </section> <footer> <a href="http://twitter.com/gsimelus92"><img src="img/twitter-wrap.png" alt="twitter Logo" class="soical-icon"></a> <p>©2016 Georgy Simelus. </p> </footer> </div> </body> </html>

about.html version

!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Georgy Simelus Web Developer</title> <link rel="stylesheet" href="css/normalize.css"> <link href="https://fonts.googleapis.com/css?family=Changa+One|Open+Sans" rel="stylesheet"> <link rel="stylesheet" href="css/main.css"> </head> <div id="wrapper"> <body> <header> <a href="index.html" id="logo"> <h1>Georgy Simelus</h1> <h2>Web devloper</h2> </a> <nav> <ul> <li><a href="index.html"> Portafilo</a></li> <li><a href="About.html" class="selected">About</a></li> <li><a href="Contact.htmlz">Contact</a></li> </ul> </nav> </header> <div id="wrapper"> <section></section> <footer> <a href="http://twitter.com/gsimelus92"><img src="img/twitter-wrap.png" alt="twitter Logo" class="soical-icon"></a> <p>©2016 Georgy Simelus. </p> </footer> </div> </body> </html>

Could you link us to your code, or to your workspace? Thanks!

5 Answers

Kevin Lawler
seal-mask
.a{fill-rule:evenodd;}techdegree
Kevin Lawler
Full Stack JavaScript Techdegree Student 5,929 Points

Hi Georgy,

the link isn't working, and your code here can't be easily read.

Please check the MARKDOWN CHEATSHEET to help send better.

please reply and followup when you can!

what is the MARKDOWN CHEATSHEET ?

Kevin Lawler
seal-mask
.a{fill-rule:evenodd;}techdegree
Kevin Lawler
Full Stack JavaScript Techdegree Student 5,929 Points

Hi Georgy,

I'm not liking the results of what I suggested. It still comes out looking jumbled, as with your's above. I need to try it out more. Also, I just noticed the code you show is just HTML code. You need CSS to change header colors.

I'm using GitHub, to share my code with others. I don't know if you've learned about GitHub yet.

To find the tips anyway, Go to a question in the Community, and UNDERNEATH the original question, and answers is a panel to "Add an Answer." Underneath that panel is a link named Markdown Cheatsheet. click on it and you'll see the best ways to input to these pages.

no worries i figured out what was wrong, the a in About.html wasn't capitalized. Yes I know GitHub but I don't full understand how it works can i follow you to get a better understanding ?

Kevin Lawler
seal-mask
.a{fill-rule:evenodd;}techdegree
Kevin Lawler
Full Stack JavaScript Techdegree Student 5,929 Points

Hi Georgy,

It always seems to be something small! They are the hardest mistakes to find!

I'm pretty new to GitHub too, but if I can help answer anything, I'll try!

Hi Kevin from what i understand git hub allow you to post your codes for other programmers to see, they can either help fix you code or add more details. What im struggling to understand is how do I find them ? and how do i narrow it down to my skill level, I keep running into advance level of codes.