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 Iconography

broken contact page

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Michael Lyon | Designer</title> <link rel="stylesheet" href="css/normalize.css"> <link href='http://fonts.googleapis.com/css?family=Josefin+Sans:300,400,700,700italic|Amatic+SC:400,700' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/main.css"> </head> <body> <header> <a href="index.html" id="logo"> <h1>Michael Lyon</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>I am no currently looking for new design work, but I am available for speaking gigs and simmilar engagements. If you have any questions, please don't hesitate to contact me!</p> <p>Please only use phone contact for urgent inquiries. Otherwise, email is the best way to reach me.</p> </section> <section> <h3>Contact Details</h3> <ul class="contact-info"> <li class="phone"><a href="tel:555-6789">555-6789</a></li> <li class="mail"><a href="mailto:mikel24299@aol.com">mikel24299@aol.com</a></li> </ul> </section> <footer> <a href="http://facebook.com/michael.lyon.334"><img src="img/facebook-wrap.png" alt="facebook logo" class="social-icon"></a> <p>Ā© 2014 Michael Lyon.</p> </footer> </div> </body> </html>

following along with the creation of contact page, and when I refresh that page goes white and all i can do is hit a back button or re open when I get a working index and about page. I will copy the code below, gone back twice and re did it from copying the about page and taking out the section, but the time i get to the unordered list it's broken again.

1 Answer

Can you copy the and wrap it in the appropriate Markdown syntax so we can see it? Click on the Markdown Cheatsheet to see how to properly wrap your html code.

<!DOCTYPE html>
etc