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 trialvijay chekuri
1,791 PointsI copied and pasted my index.html into the about.html file. When I load the website onto the browser
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> vijay | 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> vijay chekuri</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>
>
</section>
<footer>
<a href="https://www.facebook.com/vijay.prince.7"> <img src="img/facebook-wrap.png" alt="facebook" class="social-icon"></a>
<a href="https://twitter.com/vijayprinceuk"> <img src="img/twitter-wrap.png" alt="twitter" class="social-icon"></a>
<p>© 2015 vijay chekuri.</p>
</footer>
</div>
</body>
</html>
vijay chekuri
1,791 Pointsi am trying to add about.html page but it is giving me 404 error .
3 Answers
Jason Anello
Courses Plus Student 94,610 PointsAre you using workspaces?
Over on the left do you see both "index.html" and "about.html" in the same folder? Make sure the file names are all lower case letters.
"about.html" should be in the same folder as "index.html" and not in a subfolder.
Also, I noticed you have some extra spaces in your google fonts url after the question mark.
<link href='http://fonts.googleapis.com/css? family=Changa+One|Open+Sans:400italic,700italic,400,700,800' rel='stylesheet' type='text/css'>
I would check both of your pages and get rid of those spaces. This is unrelated to your problem but should be fixed.
vijay chekuri
1,791 Pointsthanks mate.. it's working.. that file was in css folder unfortunatley.
Jason Anello
Courses Plus Student 94,610 PointsGlad you got it working.
Federico Rodriguez Cardozo
Courses Plus Student 2,039 PointsThanx men I have the index not in lower cases and give me that 404 error, that answer save my life.
Jason Anello
Courses Plus Student 94,610 PointsJason Anello
Courses Plus Student 94,610 PointsHi Vijay,
I think your title was cutoff too early. What problem are you having?