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 trialp siddhu
268 Pointsabout page not wrking
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Sudhakar | 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>Sudhakar</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/sudhakar.jpg" alt="Photograph of sudhakr" class"profile-photo"> <h3>About</h3> <p>Hi, i'm sudhakar! This is my design portfolio where I share all of my favroite work.When I'm not desinging things, I enjoy going to out side for photo shots and editing the photos and drinking good coffee, and much more</p> <p>If you'd like to follow me on Twitter, My user is <a>@siddhu127.</a></p> </section> <footer> <a href="http://twitter.com/p.siddhu127"><img src="img/twitter-wrap.png" alt="Twitter Logo" class="social-icon"></a> <a href="http://facebook.com/p.prabhaprabha"><img src="img/facebook-wrap.png" alt="Facebook Logo" class="social-icon"></a> <p>Ā© 2016Sudhakar.</p> </footer> </div> </body> </html>
3 Answers
Jason Anders
Treehouse Moderator 145,860 PointsYou are missing an = sign in your class attribute for the first image in the <section> tag.
<img src="img/sudhakar.jpg" alt="Photograph of sudhakr" class="profile-photo"> <!-- Added = sign before class -->
See if that fixes it up. :)
p siddhu
268 Pointsnow also nt wrking it showing like this Not Found
The requested URL /about.html was not found on this server.
Quinton Rivera
5,177 Pointsthe same problem contact and About pages are not working when i try to preview the work that message show :
Not Found
The requested URL /About.html was not found on this server.
Jennifer Nordell
Treehouse TeacherJennifer Nordell
Treehouse TeacherNice catch, Jason. I thought he meant the page wasn't linking at all! Woops!