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

about.html and contact.html

frustrating the contact page and about not work on my mac, I do not understand ...

Hi Ary,

I can check out your issue if you provide a workplace snapshot. Just paste it back here and I can take a look.

3 Answers

Julian Aramburu
Julian Aramburu
11,368 Points

Hi Ary! First of all ...if you want some help its always useful to give some guidelines about what the problem is... Were they working before? Provide your html code in order to check it properly... What is exactly not working? The links to that pages?

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Nick Pettit | Designer</title> <link rel="stylesheet" href="css/normalise.css"> <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic|Ubuntu:400,700,700italic' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/main.css"> </head> <body> <header> <a href="index.html" id="logo"> <h1>Nikc Pettit</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/nick.jpg" alt="Photograph of Nick Pettit" class="profile-photo"/> <h3>About</h3> <p>1</p> <p>2</p> </section> <footer> <a href="http:// src=facebook.com/nickrpettit"><img src="img/facebook-wrap.png" alt="facebook Logo" class="social-icon"></a> <p>Ā© 2014 Nick Pettit</p> </footer> </div> </body> </html>

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Nick Pettit | Designer</title> <link rel="stylesheet" href="css/normalise.css"> <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic|Ubuntu:400,700,700italic' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="css/main.css"> </head> <body> <header> <a href="index.html" id="logo"> <h1>Nikc Pettit</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/nick.jpg" alt="Photograph of Nick Pettit" class="profile-photo"/> <h3>About</h3> <p>1</p> <p>2</p> </section> <footer> <a href="http:// src=facebook.com/nickrpettit"><img src="img/facebook-wrap.png" alt="facebook Logo" class="social-icon"></a> <p>Ā© 2014 Nick Pettit</p> </footer> </div> </body> </html>