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 trialMagdalena Kabelis
820 PointsSomethisng is wrong with my contact page, I copied it form the about page and wrote it 2x. It is shoing as the Main page
Workspace is broken and I only have the weekends to do this. Please fix this problem.
6 Answers
John Steer-Fowler
Courses Plus Student 11,734 PointsFrom the information you have given us there is nothing we can help you with. Would you be able to post your code or give some more information?
Refer to the Markdown Cheatsheet for help on posting your code
Alicia Pileggi
4,949 PointsMine is doing the exact same thing I've been working on it for an hour now and all it's showing is the portfolio page. I think there may be a problem with the workspace.
Magdalena Kabelis
820 Points<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Magdalena Kabelis | Designer</title> <link rel="stylesheet" href="css/normalize.css"> <link href='http://fonts.googleapis.com/css?family=Changa+One|Open+Sans:400italic,700italic,400,700,800' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/main.css"> </head> <body> <header> <a href="index.html" id="logo"> <h1>Magdalena Kabelis</h1> <h2>Designer</h2> </a> <nav> <ul> <li><a href="index.html">Portfolio</a></li> <li><a href="about.html" class="selected">About</a></li> <li><a href="contact.html">Contact</a></li> </ul> </nav> </header> <div id="wrapper"> <section> <img src="img/magdalena.jpg" alt="Photograph of Magdalena Kabelis"class="profile-photo"> <h3>About</h3> <p> Hi My name is Magdalena I am awesome hehe</p> <p> Follow me on Twitmonster <a href="http://facebook.com/mkabelis">@lenabeli</a></p> </section> <footer> <a href="http://twitter.com/lenabeli"><img src="img/twitter-wrap.png" alt="twitter logo" class="social-icon"></a> <a href="http://facebook.com/mkabelis"><img src="img/facebook-wrap.png" alt="facebook logo" class="social-icon"></a> <p>© 2014 Magdalena Kabelis.</p> </footer> </div> </body> </html> Stage 3 Creating HTML Content
John Steer-Fowler
Courses Plus Student 11,734 PointsHi Magdalena,
Would you be able to post the html using the markdown cheatsheet?
I will be happy to take a look at your code and try and help.
Magdalena Kabelis
820 Points<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Magdalena Kabelis | Designer</title> <link rel="stylesheet" href="css/normalize.css"> <link href='http://fonts.googleapis.com/css?family=Changa+One|Open+Sans:400italic,700italic,400,700,800' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/main.css"> </head> <body> <header> <a href="index.html" id="logo"> <h1>Magdalena Kabelis</h1> <h2>Designer</h2> </a> <nav> <ul> <li><a href="index.html">Portfolio</a></li> <li><a href="about.html">About</a></li> <li><a href="contact.html" class="selected">Contact</a></li> </ul> </nav> </header> <div id="wrapper"> <section> <h3>General Information</h3> <p> am the a designer and now I am learning code hahahah </p> <p>it is really nice to be learning code</p> </section> <section> <h3>Contact Details</h3> <ul class="contact-info"> <li class="phone"><a href="tel:305-794-4048">555-6425</a></li> <li class="mail"><a href="mailto:nick@example.com">nick@example.com</a></li> <li class="twitter"><a href="http://twitter.com/intent/tweet?screen_name=lenabeli">@lenabeli</a></li> </ul> </section> <footer> <a href="http://twitter.com/lenabeli"><img src="img/twitter-wrap.png" alt="twitter logo" class="social-icon"></a> <a href="http://facebook.com/mkabelis"><img src="img/facebook-wrap.png" alt="facebook logo" class="social-icon"></a> <p>© 2014 Magdalena Kabelis.</p> </footer> </div> </body> </html>
Magdalena Kabelis
820 Points<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Magdalena Kabelis | Designer</title> <link rel="stylesheet" href="css/normalize.css"> <link href='http://fonts.googleapis.com/css?family=Changa+One|Open+Sans:400italic,700italic,400,700,800' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/main.css"> </head> <body> <header> <a href="index.html" id="logo"> <h1>Magdalena Kabelis</h1> <h2>Designer</h2> </a> <nav> <ul> <li><a href="index.html" class="selected">Portfolio</a></li> <li><a href="about.html">About</a></li> <li><a href="contact.html">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>color adn texture.</p> </a> </li> <li> <a href="img/numbers-02.jpg"> <img src="img/numbers-02.jpg" alt=""> <p>eblah blah blah.</p> </a> </li> <li> <a href="img/numbers-06.jpg"> <img src="img/numbers-06.jpg" alt=""> <p>skibiddle skabooddles.</p> </a> </li> <li> <a href="img/numbers-09.jpg"> <img src="img/numbers-09.jpg" alt=""> <p>rocka duddle doo.</p> </a> </li> <li> <a href="img/numbers-12.jpg"> <img src="img/numbers-12.jpg" alt=""> <p>barf smarf digi figi.</p> </a> </li> <li> <a href="img/numbers-01.jpg"> <img src="img/numbers-01.jpg" alt=""> <p>experimentation with color adn texture.</p> </a> </li> </ul> </section> <footer> <a href="http://twitter.com/lenabeli"><img src="img/twitter-wrap.png" alt="twitter logo" class="social-icon"></a> <a href="http://facebook.com/mkabelis"><img src="img/facebook-wrap.png" alt="facebook logo" class="social-icon"></a> <p>© 2014 Magdalena Kabelis.</p> </footer> </div> </body> </html>
Magdalena Kabelis
820 Pointsoh man haha i typed the code in there feel silly
Magdalena Kabelis
820 PointsMagdalena Kabelis
820 PointsI have no clue how to do that
John Steer-Fowler
Courses Plus Student 11,734 PointsJohn Steer-Fowler
Courses Plus Student 11,734 PointsMagdalena Kabelis,
If you copy your html code from your current html file, click to post an answer to your own question and below the answer text box you will see a link to the Markdown Cheatsheet. If you click this, it will tell you how to post your code in the answer.
In a nutshell you need to put three ` on the line before and line after your code.