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 Responsive Web Design and Testing Build a Three Column Layout

Juan Ordonez
Juan Ordonez
1,418 Points

This is kinda late but my index.html (portfolio) doesn't have a two column it just has a one and it's affecting

I guess my <section> doesn't work. I created a section for index.html and it still doesn't work I created two sections for contact.html and it doesn't look like Nick's Check it out <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title> Juan Ordonez | Web Developer</title> <link rel="stylesheet" href="css/style.css"> <link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/main.css"> <link rel="stylesheet" href="css/responsive.css"> </head> <body> <header> <a href="index.html" id="logo"> <h1>Juan Ordonez</h1> <h2>Creative Director</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 id="primary"> <h3> General Information</h3> <p> If you have any question please don't hesitate to contact me! </p> <p> Please only use phone contact for urgent inquiries. Otherwise Facebook,Twitter, Instagram and email are the best way to reach me </p> </section> <section id="secondary"> <h3>Contact Details</h3> <ul class="contact-info"> <li class="phone"><a href="tel: 718-415-1898">718-415-1898</a></li> <li class="mail"><a href="mailto:juanordonez@pachanukanchik.com">juanordonez@pachanukanchik.com</a></li> <li class="instagram"><a href="https://instagram.com/nukanchik">@nukanchik</a></li> </ul> </section> <footer> <a href="https://www.facebook.com/JohnnyOrdonezz"><img src="img/Facebook.png" alt="Facebook Logo" class="social-icon"></a> <a href="https://twitter.com/NukachiPacha"><img src="img/Twitter.png" alt="Twitter Logo" class="social-icon"></a> <a href="https://instagram.com/nukanchik"><img src="img/Instagram.png" alt="Instagram Logo" class="social-icon"></a> <p> © 2016 Juan Ordonez</p> </footer> </div> </body>

</html>

1 Answer

Hi Juan,

Can you link the workspace (if using one) or can you not minify your code and wrap it in tags it is easier to read on here? This makes it easier to help you.