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

CSS How to Make a Website Adding Pages to a Website Build the Contact Page

kabir k
PLUS
kabir k
Courses Plus Student 18,036 Points

My list item Twitter link is not clickable on the "Contact page"

After writing the code for my "Contact page", and refreshing the browser, I noticed that my list item Twitter link for the second section is not clickable. Any ideas on how to fix this?

Here's the code for my "Contact page"

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>biz man | 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>biz man</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 not currently looking for new design work, but I'm available for consultation gigs and similar engagements. If you have any questions, please don't hesitate to contact me!</p> <p>Please only use phone contact for urgent inquiries. Otherwise, Twitter and email are the best way to reach me.</p> </section> <section> <h3>Contact Details</h3> <ul class="contact-info"> <li class="phone"><a href="tel:990-8963">990-8963</a></li> <li class="mail"><a href="mailto:biz.man@netzero.com">biz.man@netzero.com</a></li> <li class="twitter"><a href="http://twitter.com/intent/tweet?screen_name=bizworld"></a>@bizworld</li> </ul> </section> <footer> <a href="http://twitter.com/bizworld"><img src="img/twitter-wrap.png" alt="Twitter Logo" class="social-icon"></a> <a href="https://www.facebook.com/pages/bizworld/330226860280"><img src="img/facebook-wrap.png" alt="Facebook Logo" class="social-icon"></a> <p>Ā© 2015 bizworld.</p> </footer> </div>
</body> </html>

1 Answer

For your line of code in the list element you have the closing anchor element before your twitter name (@bizworld).

Try changing the code to have the closing anchor element after your twitter name.

Hope this helps!